ex13.pp 207 B

1234567891011
  1. Program Example13;
  2. { Program to demonstrate the floor function. }
  3. Uses math;
  4. begin
  5. Writeln(Ceil(-3.7)); // should be -4
  6. Writeln(Ceil(3.7)); // should be 3
  7. Writeln(Ceil(-4.0)); // should be -4
  8. end.