ex20.pp 156 B

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