home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / INTRO13.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  423b  |  16 lines

  1. // INTRO13.CPP--Example from Chapter 3, "An Introduction to C++" 
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.     int first, second;
  8.     cout << "\nInput two numbers  ";
  9.     cin >> first >> second;
  10.     cout << "First > second has the value "<< (first > second) << '\n';
  11.     cout << "first < second has the value " << (first < second) << '\n';
  12.     cout << "first == second has the value "<< (first == second) << '\n';
  13.  
  14.    return 0;
  15. }
  16.