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