Posts: 13
Threads: 2
Joined: Apr 2009
Reputation:
0
It stands for 'modulus'. Basically the number loops back to zero once it hits that number; that test is testing whether the answer is more than 0, meaning, in pseudo-code:
if(a is not a multiple of b){
DO THIS;
}
23 % 2 = 1
25 % 5 = 0
80 % 9 = 8
Etcetera.