mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 06:39:39 +02:00
9 lines
94 B
ObjectPascal
9 lines
94 B
ObjectPascal
{ %version=1.1 }
|
|
var
|
|
c: currency;
|
|
begin
|
|
c:=234982814;
|
|
writeln(round(c * 100));
|
|
end.
|
|
|