ex42.pp 151 B

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