ex12.pp 222 B

12345678910111213
  1. Program Example12;
  2. { Program to demonstrate the degtorad function. }
  3. Uses math;
  4. begin
  5. writeln(degtorad(45));
  6. writeln(degtorad(90));
  7. writeln(degtorad(180));
  8. writeln(degtorad(270));
  9. writeln(degtorad(360));
  10. end.