+ 1
5%0
Remainder
4 Respostas
+ 1
Thanx
+ 3
Seb TheS
x / y for y > 0
So x % y also for y > 0.
+ 1
not possible since thats basically dividing by 0 ...
+ 1
Because:
x % y = z
In programming is represented as:
x = y * q + z
In maths.
If x = 5 and y = 0
Then:
5 = 0 * q + z
z = 5
That's why:
5 % 0 = 5
Weird. Can it be true?