ex3.pp 135 B

12345678910
  1. Program Example3;
  2. { Program to demonstrate the arcosh function. }
  3. Uses math;
  4. begin
  5. Writeln(arcosh(1));
  6. Writeln(arcosh(2));
  7. end.