Example
public
class
ClassA {
int
i;
int
j;
public void
methodA {
j= i % 8 * 100;
}
}
Solution
Depending on the programmer's intention of the operation, change the operation to (i%8)*100
public
class
ClassA {
int
i;
int
j;
public void
methodA {
j= (i % 8) * 100;
}
}