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

12 lines
185 B
ObjectPascal

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