home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / LOG.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  312 b   |  15 lines

  1. main()    /* log.c -- prints (short) table of natural logarithms */
  2.  
  3. {
  4.     double n, ln;
  5.  
  6.     printf("  n\t\t\t  ln(n)\n");
  7.     for (n = 1.0; n < 1.5; n += 0.01) {
  8.         ln = log(n);
  9.         printf("%.2f\t\t\t%.5f\n",n,ln);
  10.     }
  11.     puts("Correct last two lines:");
  12.     puts("1.48\t\t\t0.39204");
  13.     puts("1.49\t\t\t0.39878");
  14. }
  15.