home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Borland Plateform / Turbo C v3.0 / INTRO24.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-17  |  253 b   |  17 lines

  1. // INTRO24.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.    int num = 0;
  8.    while (num++ <= 10)
  9.    {
  10.       if (num % 2 != 0)
  11.          continue;
  12.       cout << '\n' << num;
  13.    }
  14.  
  15.    return 0;
  16. }
  17.