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 sum of the series (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + ... + (n*n)

C++ For Loop: Exercise-12 with Solution

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

Pictorial Presentation:

C++ Exercises: Calculate the sum of the series (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + ... + (n*n)

Sample Solution :-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int i, n, sum = 0;
    cout << "\n\n Find the sum of the series (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + ... + (n*n):\n";
    cout << "------------------------------------------------------------------------------------\n";
    cout << " Input the value for nth term: ";
    cin >> n;

    for (i = 1; i <= n; i++) 
	{
        sum += i * i;
        cout << i << "*" << i << " = " << i * i << endl;
    }
    cout << " The sum of the above series is: " << sum << endl;
}

Sample Output:

 Find the sum of the series (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + ...
 + (n*n):                                                              
-----------------------------------------------------------------------
-------------                                                          
 Input the value for nth term: 5                                       
1*1 = 1                                                                
2*2 = 4                                                                
3*3 = 9                                                                
4*4 = 16                                                               
5*5 = 25                                                               
 The sum of the above series is: 55  

Flowchart:

Flowchart: Calculate the sum of the series (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + ... + (n*n)

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the sum of the series 1 + 1/2^2 + 1/3^3 + …..+ 1/n^n.
Next: Write a program in C++ to calculate the series (1) + (1+2) + (1+2+3) + (1+2+3+4) + ... + (1+2+3+4+...+n).

What is the difficulty level of this exercise?