Seriously,
I am really confused...
Help me out here. :/ please
/ means division. You should know what division is. 5/2 = 2.5.
However, % means modulus. Modulus is like division, but it returns the remainder (thank you Perci1 for pointing out my mistake). If you did 5 % 2, you would get 1. You could then do 5 - 1 = 4, 4/2 = 2, and that's how many times 2 goes into 5 entirely. Here are more examples:
11 % 5 = 1 12 % 6 = 0 14 % 6 = 2 20 % 15 = 5