ex8.pp 129 B

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