bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/C++/C++ How To
C++•C++ How To

C++ How To Add Two Numbers

Add Two Numbers

Learn how to add two numbers in C++:

Example

int x = 5;
int y = 6;
int sum = x + y;
cout << sum;

Add Two Numbers with User Input

In this example, the user must input two numbers. Then we print the sum by calculating (adding) the two numbers:

Example

int x, y;
int sum;
cout << "Type a number: ";
cin >> x;
cout << "Type another number: ";
cin >> y;
sum = x + y;
cout << "Sum is: " << sum;

Next

C++ How To Generate Random Numbers