quotient( numerator, denominator )
Returns the quotient when numerator is divided by the denominator, and drops the remainder.
Keyword | Type | Description |
---|---|---|
|
Decimal |
The numerator of the quotient, or the number that is divided. |
|
Decimal |
The denominator of the quotient, or the number to divide by. |
Integer
The denominator value cannot be 0
.
quotient(8.0,3.0)
returns 2