Number + Number | Adds two numbers. |
- Number | Computes the opposite sign of a number. Zero is the opposite
of itself.
==> 5 ! -8 , -5 !! 8 |
Number - Number | Subtracts two numbers. |
Number * Number | Multiplies two numbers. |
Number / Number | Divides two numbers. A division by zero error will occur if the value of the number to the right of the slash is zero. |
Number ^ Power | Raises Number to the power Power .
==> 64 |
Number \ Number | Computes the quotient of the two numbers. A division by
zero error will occur if the value of the number to the right of
the backslash is zero. A \ B is the equivalent of INT(A/B).
==> 2 , 1 |
Number AND Number | Computes the mathematical and of the binary value
of the two numbers.
==> 1 |
Number MOD Number | Computes the remainder of the quotient of the two numbers. A
division by zero error will occur if the value of the
number to the right of the operator MOD is zero.
==> 2 , 1 |
Number OR Number | Computes the mathematical or of the binary value
of the two numbers.
==> 7 |
Number XOR Number | Computes the mathematical exclusive or of the
binary value of the two numbers.
==> 6 |