ex7.pp 205 B

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