summaryrefslogtreecommitdiff
path: root/fpcdocs/mathex/ex16.pp
blob: 55e78f53c77645a6fb1a9dc1e33f24f4a9bffcee (plain)
1
2
3
4
5
6
7
8
9
10
11
Program Example16;

{ Program to demonstrate the gradtorad function. }

Uses math;

begin
  writeln(gradtorad(100));
  writeln(gradtorad(200));
  writeln(gradtorad(300));
end.