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

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.