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

  1. // \EXAMPLES\EX0201.CPP
  2. // This is a simple C++ program to input 2 numbers,
  3. // add them together and print out the sum.          
  4. #include <iostream.h>            // Needed for cin and cout
  5.  
  6. void main()
  7. {
  8.    int a, b;                  // Input variables
  9.    cout << "Please enter two integers" << endl;
  10.                              // Prompt for numbers
  11.    cin >> a >> b;            // Get the numbers
  12.    int d = a + b;            // Calculate the sum
  13.    cout << "Here is the sum of your two integers: " << d << endl;
  14.                              // Print result
  15. }
  16.  
  17.