ex16.pp 176 B

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