+ | Leaves the variable as it was |
- | Creates the negative of the variable |
++ | Increments the variable by 1 |
-- | Decrements the variable by 1 |
∗ | Multiplies the two variables y = a∗b |
/ | Divides y= a/b |
% | Used to get the remainder of a division of two variables m = a%b |
< | Less than if (y < a) means y is less than a |
<= | Less than or equal to if (y < =a) ... |