Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Operators > / (divide) | |||
Flash Lite 1.0.
expression1/expression2
expression1, expression2 Numbers or expressions that evaluate to numbers.
Operator (arithmetic); divides expression1 by expression2. The result of the division operation is a double-precision floating-point number.
The following statement divides the floating-point number 22.0 by 7.0 and then shows the result in the Output panel:
trace(22.0 / 7.0);
The result is 3.1429, which is a floating-point number.
|
|
|
|