|
Number + Number
|
Adds two numbers.
|
|
- Number
|
Computes the opposite sign of a number. Zero is the opposite of itself.
|
|
Number - Number
|
Subtracts two numbers.
|
|
Number * Number
|
Multiplies two numbers.
|
|
Number / Number
|
Divides two numbers, and returns the result as a floating-point number. A Division By Zero (26) 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.
For example, 4 ^ 3 = 64
|
|
Number \ Number
Number DIV Number
|
Computes the quotient of the two Integer numbers, truncating the result. A Division By Zero (26) error will occur if the value of the number to the right of the backslash is zero.
For example, 13 \ 6 = 2
A \ B = Int(A / B)
|
|
Number % Number
Number MOD Number
|
Computes the remainder of the quotient of the two numbers.
A Division By Zero (26) error will occur if the value of the number to the right of the operator MOD is zero.
|