Gunmaster95
+ Addition- Subtraction* Multiplication/ Division% Modulo== Equal to!= Not equal to> Greater than>= Greater than or equal to< Less than<= Less than or equal to&& And|| OrIn the absence of brackets, the operators will be evaluated in this order:
5 % 3 = 26 % 2 = 09 % 4 = 115 % 4 = 3A good use for this operator is checking if one number is evenly divisible by another, due to the fact that (x*y) % x = 0.