Simple Addition ( Add Two Integers ) Example Program
Definition
Using cin, read the two integers from the user and print sum of two integers.
Syntax and Formula
for cin,
cin >> varable_name;
for sum,
sum = varable_name_1 + varable_name_2
Simple Addition Add Two Integers Example Program
/* Simple Addition Add Two Integers Example Program In C++ */
/* Add Two Integers Programs, Addition Programs,C++ Examples */
// Header Files
#include<iostream>
#include<conio.h>
//Main Function
using namespace std;
int main() {
// Local Variable 'a,b,result' Declaration
int a, b, result;
cout << "Simple Addition : Add Two Integers Example Program\n";
cout << "Enter two Integers : ";
cin >> a >> b;
// Simple Addition : Sum of the Two Integers
result = a + b;
// Print the output (Addition Result)
cout << "Result :" << a << " + " << b << " = " << result;
// Wait For Output Screen
getch();
//Main Function return Statement
return 0;
}
Sample Output
Simple Addition : Add Two Integers Example Program
Enter two Integers : 100
200
Result :100 + 200 = 300
C++ Basic Example Programs
- Hello World C++ Example Program
- Simple Program for Read user Input Using cin
- Simple Addition ( Add Two Integers ) Example Program
- if Statement Example Program in C++
- if..else Statement Example Program In C++
- If Else Ladder Example Program
- Simple Switch Statement Example Program In C++
- For Loop Example Program In C++
- While Loop Example Program In C++
- Do While Loop Example Program In C++
Read More Articles
- Simple Merge Sort Program in C++
- Scope Resolution Operator In C++
- Simple Program for Virtual Functions Using C++ Programming
- Simple Class Example Program For Find Prime Number In C++
- Simple Example Program For Parameterized Constructor In C++
- Define Constructor in Outside Class Example Program In C++
- Simple Program for Function Overloading Using C++ Programming
- Simple Example Program For Copy Constructor In C++
- Simple Program for Single Inheritance Using C++ Programming
- Simple Program for Inline Function without Class Using C++ Programming
- Factorial Using Function Example Program In C++
- Simple Addition ( Add Two Integers ) Example Program
- Simple Example Program For Constructor In C++
- Simple Example Program for Inline Function Using C++ Programming
- Simple Example Program For Constructor Overloading In C++
- Simple Program for Read user Input Using cin
- Factorial Using Loop Example Program In C++
- Simple Stack Program in C++ Programming
- Simple Program for Friend Function Using C++ Programming
- Simple Program for Static Data and Member Function Using C++ Programming
- Simple Program for Unary Operator Overloading Using C++ Programming
- Do While Loop Example Program In C++
- Simple Program for Multiple Inheritance Using C++ Programming
- Simple Copy Constructor Example Program For Find Factorial In C++
- Simple Program for Exception Handling Divide by zero Using C++ Programming