Round

From SCAR Divi Manual
Revision as of 19:50, 26 June 2011 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function Round(X: Extended): Integer;

Availability

SCAR Divi 3.00 > Current

Description

This function rounds a value given by X.

Example

begin
  WriteLn(Round(1.1));   
  WriteLn(Round(1.5));
  WriteLn(Round(1.9));
end.

Output:

1
2
2

See Also