home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_08 / 8n08122a < prev    next >
Text File  |  1990-07-18  |  369b  |  25 lines

  1.     
  2.     
  3.     
  4.     
  5.     
  6.     #include <stdio.h>
  7.     #include <ctype.h> 
  8.     #include <math.h>
  9.     
  10.     void main()
  11.     {
  12.      float f;              
  13.      int index, n = 75;
  14.     
  15.      f = 10000.0 / 3.0;
  16.      for(index = 1; index < n; index++)
  17.       {
  18.        f = f / 10.0;
  19.        printf(" %d %e\n", index, f);
  20.       }
  21.     }
  22.     
  23.        LISTING 1
  24.  
  25.