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

12 lines
176 B
ObjectPascal

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