Arithmetic Operators

suggest change
1 + 2      # Addition
1 - 2      # Subtraction
-1         # Set negative value
1 * 2      # Multiplication
1 / 2      # Division
1 % 2      # Modulus
100 -shl 2 # Bitwise Shift-left
100 -shr 1 # Bitwise Shift-right

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents