ex9.pp 162 B

1234567891011
  1. Program Example9;
  2. { Program to demonstrate the cotan function. }
  3. Uses math;
  4. begin
  5. writeln(cotan(pi/2));
  6. Writeln(cotan(pi/3));
  7. Writeln(cotan(pi/4));
  8. end.