Q:

Write a program in C++ to display n terms of natural number and their sum

0

Write a program in C++ to display n terms of natural number and their sum

Sample Output:

 Display n terms of natural number and their sum:                      
---------------------------------------                                
 Input a number of terms: 7                                            
 The natural numbers upto 7th terms are:                               
1 2 3 4 5 6 7                                                          
 The sum of the natural numbers is: 28

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
using namespace std;
int main()
{
    int n,i,sum=0;
    cout << "\n\n Display n terms of natural number and their sum:\n";
    cout << "---------------------------------------\n";
	cout << " Input a number of terms: ";
	cin>> n;		
    cout << " The natural numbers upto "<<n<<"th terms are: \n";
    for (i = 1; i <= n; i++) 
    {
        cout << i << " ";
		sum=sum+i;
    }
     cout << "\n The sum of the natural numbers is: "<<sum << endl;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now