mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:49:30 +02:00
12 lines
162 B
ObjectPascal
12 lines
162 B
ObjectPascal
Program Example9;
|
|
|
|
{ Program to demonstrate the cotan function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
writeln(cotan(pi/2));
|
|
Writeln(cotan(pi/3));
|
|
Writeln(cotan(pi/4));
|
|
end.
|