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

14 lines
222 B
ObjectPascal

Program Example12;
{ Program to demonstrate the degtorad function. }
Uses math;
begin
writeln(degtorad(45));
writeln(degtorad(90));
writeln(degtorad(180));
writeln(degtorad(270));
writeln(degtorad(360));
end.