Div (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Template:Float:Div subtitle}}
This [[Intrinsic classes|intrinsic]] function returns the integer part of the result of dividing
This [[Intrinsic classes|intrinsic]] function returns the integer part of the result of dividing
the method object by the method argument.
the method object by the method argument.
Line 8: Line 10:


The Div function is available as of version 7.3 of the [[Sirius Mods]].
The Div function is available as of version 7.3 of the [[Sirius Mods]].
===Div syntax===
==Syntax==
  %quo = number:Div(num)
{{Template:Float:Div syntax}}
====Syntax terms====
===Syntax terms===
<dl>
<dl>
<dt>%quo
<dt>%quo
Line 20: Line 22:
causes a request cancellation.
causes a request cancellation.
</dl>
</dl>
===Examples===
==Examples==
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):

Revision as of 13:42, 19 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