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

  1.      
  2.     #include <stdio.h>
  3.     #include <math.h>
  4.     #include <ctype.h>
  5.     
  6.     void main()
  7.     {
  8.      double x,y ;
  9.     
  10.      for ( x = 1.0; x <= 25.0; (x = x + 1.0) )
  11.       {
  12.        y = sqrt(x) * sqrt(x);
  13.        if (y != x)
  14.          printf("%5.1f %21.17f %10.2e\n", x, y, x-y);
  15.       }
  16.     }
  17.     
  18.     LISTING 4
  19.  
  20.