+ 11
Can anyone please tell what is modulo
Sign of modulo is%
3 Réponses
+ 7
Purvesh Kolhe
Modulo returns reminder value.
For example:
7 % 5 = 2
10 % 5 = 0
+ 6
Thanks for your answer
+ 5
The operator of the remainder of the number %
(for example: 17 % 3 = 2)
1. Take the nearest number when divided by 3 would be zero. That's apparently 15
2. Subtract 15 from 17 and the result is your answer.