The Program in C++ to Print the Sum of two numbers is given below:
#include <iostream>
int main() {
int num1, num2, sum;
std::cout << "Enter first number: ";
std::cin >> num1;
std::cout << "Enter second number: ";
std::cin >> num2;
sum = num1 + num2;
std::cout << "Sum of the numbers: " << sum << std::endl;
return 0;
}
Output:
Enter first number: 56
Enter second number: 23
Sum of the numbers: 79
Pro-Tips💡
This code uses the cin
function from the iostream
library to read input from the user and store it in the variables num1
and num2
.
Then the code uses the +
operator to add the two numbers together and the result is stored in the variable sum
.
Finally, the value of the sum
variable is printed to the screen using the cout
function.
std::cout
is used to output the result and std::cin
is used to take the input.
This program prompts the user to enter two numbers, reads them as integers, and then prints their sum.
Learn C-Sharp ↗
C-sharp covers every topic to learn about C-Sharp thoroughly.
Learn C Programming ↗
C-Programming covers every topic to learn about C-Sharp thoroughly.
Learn C++ Programming↗
C++ covers every topic to learn about C-Sharp thoroughly.