mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:28:04 +02:00
11 lines
259 B
ObjectPascal
11 lines
259 B
ObjectPascal
Program Example54;
|
|
|
|
{ Program to demonstrate the Round function. }
|
|
|
|
begin
|
|
Writeln (Round(123.456)); { Prints 124 }
|
|
Writeln (Round(-123.456)); { Prints -124 }
|
|
Writeln (Round(12.3456)); { Prints 12 }
|
|
Writeln (Round(-12.3456)); { Prints -12 }
|
|
end.
|