home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX0202.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-13  |  389 b   |  18 lines

  1. // \EXAMPLES\EX0202.CPP
  2.  
  3. #include <iostream.h>
  4. void main()
  5. {
  6. int val1, val2;
  7. cout << "Enter two integers: " << endl;
  8. cin >> val1 >> val2;
  9. if (val1 > val2)
  10.         {
  11.         cout << "The first value is larger ";
  12.         int val3 = val1-val2;
  13.         cout << "by the amount " << val3 << endl;
  14.         }
  15. else
  16.         cout << "The second value is equal or larger " << endl;
  17. }
  18.