ex15.pp 176 B

1234567891011
  1. Program Example15;
  2. { Program to demonstrate the gradtodeg function. }
  3. Uses math;
  4. begin
  5. writeln(gradtodeg(100));
  6. writeln(gradtodeg(200));
  7. writeln(gradtodeg(300));
  8. end.