home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / while2.cpp < prev    next >
C/C++ Source or Header  |  1993-03-22  |  464b  |  21 lines

  1. // Program calculates a sum of squared odd integers in 
  2. // the range of 11 to 121
  3.  
  4. #include <iostream.h>
  5.                  
  6. const int FIRST = 11;
  7. const int LAST = 121;                 
  8.                  
  9. main()
  10. {
  11.     double sum = 0;
  12.     int i = FIRST;
  13.     while (i <= LAST) {
  14.       sum += double(i * i++);
  15.     }
  16.     cout << "Sum of squared odd integers from "
  17.          << FIRST << " to " << LAST << " = "
  18.          << sum << "\n";
  19.     return 0;
  20. }
  21.