Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Calculate the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (1+2+3+4+...+n)

C++ For Loop: Exercise-13 with Solution

Write a program in C++ to calculate the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (1+2+3+4+...+n).

Pictorial Presentation:

C++ Exercises: Calculate the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (1+2+3+4+...+n)

Sample Solution :-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int i, j, n, sum = 0, tsum;
    cout << "\n\n Find the sum of the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (1+2+3+4+...+n):\n";
    cout << "------------------------------------------------------------------------------------------\n";
    cout << " Input the value for nth term: ";
    cin >> n;
    for (i = 1; i <= n; i++) 
	{
        tsum = 0;
        for (j = 1; j <= i; j++) 
		{
            sum += j;
            tsum += j;
            cout << j;
            if (j < i) 
			{
                cout << "+";
            }
        }
        cout << " = " << tsum << endl;
    }
    cout << " The sum of the above series is: " << sum << endl;
}

Sample Output:

 Find the sum of the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (
1+2+3+4+...+n):                                                        
-----------------------------------------------------------------------
-------------------                                                    
 Input the value for nth term: 5                                       
1 = 1                                                                  
1+2 = 3                                                                
1+2+3 = 6                                                              
1+2+3+4 = 10                                                           
1+2+3+4+5 = 15                                                         
 The sum of the above series is: 35 

Flowchart:

Flowchart: Calculate the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (1+2+3+4+...+n)

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to calculate the sum of the series (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + ... + (n*n).
Next: Write a program in C++ to find the sum of series 1 - X^2/2! + X^4/4!-.... upto nth term.

What is the difficulty level of this exercise?