ex48.pp 151 B

1234567891011
  1. Program Example48;
  2. { Program to demonstrate the Tanh function. }
  3. Uses math;
  4. begin
  5. writeln(tanh(0));
  6. writeln(tanh(1));
  7. writeln(tanh(-1));
  8. end.