fpc/docs/mathex/ex16.pp
2000-07-06 12:36:10 +00:00

12 lines
176 B
ObjectPascal

Program Example16;
{ Program to demonstrate the gradtorad function. }
Uses math;
begin
writeln(gradtorad(100));
writeln(gradtorad(200));
writeln(gradtorad(300));
end.