0
I don't know what is modulo,someone please explain to me easily
4 Answers
+ 9
modulo(%) is an arithmatic operator like + Ă Ă·...
it returns the remainder after division
ex. 9%4=1
**hope this helpsđđ
+ 5
A modulo is a mathematical operator, indicated in Java by the symbol '%'. It works very much like a division (7/3 = 2.33) but instead of showing how much a number fits into another, it shows the excess after it can't be divided further (7%3 = 1) as 3 fits in 7 twice, with 1 left.
- 2
hi