Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Print the sum of two numbers

C++ Basic: Exercise-2 with Solution

Write a program in C++ to print the sum of two numbers.

Pictorial Presentation:

C++ Exercises: Print the sum of two numbers

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
 
int main()
{
    cout << "\n\n Print the sum of two numbers :\n";
	cout << "-----------------------------------\n";
    cout << " The sum of 29 and 30 is : "<< 29+30 <<"\n\n" ;
}

Sample Output:

 Print the sum of two numbers :                                        
-----------------------------------                                    
 The sum of 29 and 30 is : 59

Flowchart:

Flowchart: Print the sum of two numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to print a welcome text in a separate line.
Next: Write a program in C++ to find Size of fundamental data types.

What is the difficulty level of this exercise?