Int(Value: Double): Integer;
Value. Rounded value.
The Int method rounds the specified number down to the nearest integer.
Available values range for input parameter [MinInteger; MaxInteger]. MinInteger = -231, MaxInteger = 231 - 1.
If input parameter goes beyond the left border of available values, the method returns MinInteger.
If input parameter goes beyond the right border of available values, the method returns MaxInteger.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Integer;
Begin
r := Math.Int(8.9);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the result of rounding to the nearest least integer equal to 8.
See also: