Div (Float function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 24: | Line 24: | ||
The following statement returns to %z the integer quotient from the division of | The following statement returns to %z the integer quotient from the division of | ||
the number in %x (rounded) by the number in %y (rounded): | the number in %x (rounded) by the number in %y (rounded): | ||
<p class="code">%z = %x:div(%y) | |||
</p> | |||
The following statement returns ''''-95'''' to %z: | The following statement returns ''''-95'''' to %z: | ||
<p class="code">%z = -191.4:div(2.3) | |||
</p> | |||
==See also== | ==See also== | ||
[[List of intrinsic Float methods]] | [[List of intrinsic Float methods]] |
Revision as of 15:50, 20 January 2011
Integer division (Float class)
This intrinsic function returns the integer part of the result of dividing
the method object by the method argument.
The numbers to be divided are first rounded to the nearest integer, including zero. Any remainder from the division is ignored.
The Modulus function returns the remainder of a division.
The Div function is available as of version 7.3 of the Sirius Mods.
Syntax
%number = float:Div( divisor)
Syntax terms
%quo | A variable to receive the integer part of the quotient. |
---|---|
number | A Float value to be divided by the method argument, num. |
num | A non-zero numeric value. A value of 0, or a value that rounds down to 0, causes a request cancellation. |
Examples
The following statement returns to %z the integer quotient from the division of the number in %x (rounded) by the number in %y (rounded):
%z = %x:div(%y)
The following statement returns '-95' to %z:
%z = -191.4:div(2.3)
See also
List of intrinsic Float methods