mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-23 01:23:40 +02:00
12 lines
176 B
ObjectPascal
12 lines
176 B
ObjectPascal
Program Example16;
|
|
|
|
{ Program to demonstrate the gradtorad function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
writeln(gradtorad(100));
|
|
writeln(gradtorad(200));
|
|
writeln(gradtorad(300));
|
|
end.
|