C++ program to add five numbers
In this example, you will learn about how to calculate the sum of five (5) numbers in C++.
This below program takes the first 5 numbers from the user and returns the sum of it.
#include <iostream>
using namespace std;
int main()
{
int num, sum=0;
cout<<"Please enter 5 numbers:"<<endl;
for(int i=0; i<5; i++)
{
// input is stored in num
cin>>num;
// adding 5 numbers
sum=sum+num;
}
cout << "\n The sum of 5 numbers is: "<<sum << endl;
return 0;
}
You can also learn, the C++ program to add two numbers.