home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / EXAMPLES.ZIP / INTRO14.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  389 b   |  22 lines

  1. // INTRO14.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.     int   your_number;
  8.     cout << "Enter a whole number: ";
  9.     cin >> your_number;
  10.  
  11.     if (your_number % 2 == 0)
  12.         cout << "\nYour number is even\n";
  13.  
  14.     if (your_number % 2 != 0) 
  15.         {
  16.         cout << "Your number is odd.\n";
  17.         }
  18. cout << "That's all!\n";
  19.  
  20. return 0;
  21. }
  22.