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

  1. main()    /* sqrt.c -- squares two numbers */
  2.  
  3. {
  4.  
  5. double x;
  6. double result;
  7.  
  8. x = 9;
  9.  
  10. result = sqrt(x);
  11. printf("%.f is the square root of %.f\n", result, x);
  12. result = sqrt(result);
  13. printf("%.17f is the square root of %.f", result, sqrt(x));
  14. }
  15.