ex34.pp 175 B

12345678
  1. Program Example34;
  2. { Program to demonstrate the Int function. }
  3. begin
  4. Writeln (Int(123.456):0:1); { Prints 123.0 }
  5. Writeln (Int(-123.456):0:1); { Prints -123.0 }
  6. end.