Round

From SCAR Divi Manual
Revision as of 17:22, 25 June 2011 by Freddy (talk | contribs) (Created page with "==Definition== <func>function Round(X: Extended): Integer;</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function rounds a value given by '''X'''. ==Ex...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

<func>function Round(X: Extended): Integer;</func>

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