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

12 lines
174 B
ObjectPascal

Program Example11;
{ Program to demonstrate the degtograd function. }
Uses math;
begin
writeln(degtograd(90));
writeln(degtograd(180));
writeln(degtograd(270))
end.