summaryrefslogtreecommitdiff
path: root/fpcdocs/mathex/ex15.pp
blob: 19c86c936c480ccabc113e46c9df9b0a33c16827 (plain)
1
2
3
4
5
6
7
8
9
10
11
Program Example15;

{ Program to demonstrate the gradtodeg function. }

Uses math;

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