| Syntax |
num.expression / num.expression
|
| Category |
BASIC
|
| Type |
Operator, Arithmetic
|
| Description |
arithmetic division operator.
|
| Options |
|
| See Also |
num.expression
|
| Example |
hourly.cost = total.price / total.hours
Divides the contents of the total.price variable by the contents of the total.hours variable and places the results in the hourly.cost variable.
|
| Warnings |
Should the denominator expression evaluate to a zero, the following runtime warning message is displayed:
[b24] in program "pgm", line n: Division by zero illegal; zero used.
|
| Compatibility |
D3 7.0 AP R83
|