39 lines
1.9 KiB
C++
39 lines
1.9 KiB
C++
// fig02_04.cpp
|
|
// Addition program that displays the sum of two integers.
|
|
#include <iostream> // enables program to perform input and output
|
|
|
|
// function main begins program execution
|
|
int main() {
|
|
// declaring and initializing variables
|
|
int number1{0}; // first integer to add (initialized to 0)
|
|
int number2{0}; // second integer to add (initialized to 0)
|
|
int sum{0}; // sum of number1 and number2 (initialized to 0)
|
|
|
|
std::cout << "Enter first integer: "; // prompt user for data
|
|
std::cin >> number1; // read first integer from user into number1
|
|
|
|
std::cout << "Enter second integer: "; // prompt user for data
|
|
std::cin >> number2; // read second integer from user into number2
|
|
|
|
sum = number1 + number2; // add the numbers; store result in sum
|
|
|
|
std::cout << "Sum is " << sum << "\n"; // display sum
|
|
} // end function main
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
|
|
* Pearson Education, Inc. All Rights Reserved. *
|
|
* *
|
|
* DISCLAIMER: The authors and publisher of this book have used their *
|
|
* best efforts in preparing the book. These efforts include the *
|
|
* development, research, and testing of the theories and programs *
|
|
* to determine their effectiveness. The authors and publisher make *
|
|
* no warranty of any kind, expressed or implied, with regard to these *
|
|
* programs or to the documentation contained in these books. The authors *
|
|
* and publisher shall not be liable in any event for incidental or *
|
|
* consequential damages in connection with, or arising out of, the *
|
|
* furnishing, performance, or use of these programs. *
|
|
**************************************************************************/
|