Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is 4 % -8 equal to 4? [duplicate]

Tags:

java

modulus

In Java,

4 % -8

is giving 4 as an output and not

-4

as expected by me.

like image 989
Sourav Avatar asked Nov 01 '20 17:11

Sourav


1 Answers

This is covered in detail in the Java language specification section 15.17.3.

The remainder operation for operands that are integers after binary numeric promotion (§5.6) produces a result value such that (a/b)*b+(a%b) is equal to a.

This identity holds even in the special case that the dividend is the negative integer of largest possible magnitude for its type and the divisor is -1 (the remainder is 0).

It follows from this rule that the result of the remainder operation can be negative only if the dividend is negative, and can be positive only if the dividend is positive. Moreover, the magnitude of the result is always less than the magnitude of the divisor.

So, for example, -4 % 8 is indeed -4, but since 4/-8 is 0, and 0 * -8 == 0, the remainder 4 % -8 has to be 4.

like image 50
Louis Wasserman Avatar answered Nov 11 '22 14:11

Louis Wasserman