mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:49:30 +02:00
14 lines
222 B
ObjectPascal
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.
|