C++ How To Add Two Numbers
Add Two Numbers
Learn how to add two numbers in C++:
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;
Run example »
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.