tb0059.pp 354 B

12345678910111213
  1. { Old file: tbs0066.pp }
  2. { shows that Round doesn't work correctly. (NOT A bugs) OK 0.99.1 }
  3. Program Example54;
  4. { Program to demonstrate the Round function. }
  5. begin
  6. Writeln (Round(123.456)); { Prints 124 }
  7. Writeln (Round(-123.456)); { Prints -124 }
  8. Writeln (Round(12.3456)); { Prints 12 }
  9. Writeln (Round(-12.3456)); { Prints -12 }
  10. end.