fpc/docs/mathex/ex39.pp
2000-07-08 17:10:53 +00:00

12 lines
189 B
ObjectPascal

Program Example39;
{ Program to demonstrate the radtograd function. }
Uses math;
begin
writeln(radtograd(2*pi):8:6);
writeln(radtograd(pi):8:6);
writeln(radtograd(pi/2):8:6);
end.