C++ Program to Add Two Numbers

In this program, user is asked to enter two integers. Then, the sum of those two integers is stored in a variable and displayed on the screen. Primary tabs

Example: Program to Add Two Integers

#include <iostream>
using namespace std;

int main()
{
    int firstNumber, secondNumber, sumOfTwoNumbers;
    
    cout << "Enter two integers: ";
    cin >> firstNumber >> secondNumber;

    // sum of two numbers in stored in variable sumOfTwoNumbers
    sumOfTwoNumbers = firstNumber + secondNumber;

    // Prints sum 
    cout << firstNumber << " + " <<  secondNumber << " = " << sumOfTwoNumbers;     

    return 0;
}
Output
Enter two integers: 4
5
4 + 5 = 9
In this program, user is asked to enter two integers. These two integers are stored in variables firstNumber and secondNumber respectively.
Then, the variables firstNumber and secondNumber are added using + operator and stored in sumOfTwoNumbers variable.
Finally, sumOfTwoNumbers is displayed on the screen. Read More C++

Comments

Popular posts from this blog

Creating a Cursor from a Font Symbol in a WPF Application

C++ Program to Find All Roots of a Quadratic Equation

C++ Program to Find Quotient and Remainder