ex5.pp 136 B

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