QUOTIENT
Syntax QUOTIENT number number 
(QUOTIENT number number number ...) 
 
Explanation QUOTIENT reports the result of dividing the first input by the second input. QUOTIENT expects two inputs, but will accept more if it and all its inputs are enclosed in parentheses.

See also REMAINDER.

Examples QUOTIENT 10 5 
Result: 2 
QUOTIENT 10 3 
Result: 3.33 
QUOTIENT 10 30 
Result: 0.33 
QUOTIENT -10 3 
Result: -3.33 
(QUOTIENT 5 5 5)
Result: 0.2

TopIndex