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: Display the sum of the specified series

C++ For Loop: Exercise-23 with Solution

Write a program in C++ to display the sum of the series [ 9 + 99 + 999 + 9999 ...].

Pictorial Presentation:

C++ Exercises: Display the sum of the specified series

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    long int n, i, t = 9;
    int sum = 0;
    cout << "\n\n Display the sum of the series [ 9 + 99 + 999 + 9999 ...]\n";
    cout << "-------------------------------------------------------------\n";
    cout << " Input number of terms: ";
    cin >> n;

    for (i = 1; i <= n; i++) 
    {
        sum += t;
        cout << t << "  ";
        t = t * 10 + 9;
    }
    cout << "\n The sum of the sarise = " << sum << endl;
}

Sample Output:

 Display the sum of the series [ 9 + 99 + 999 + 9999 ...]              
-------------------------------------------------------------          
 Input number of terms: 5                                              
9  99  999  9999  99999                                                
 The sum of the sarise = 111105   

Flowchart:

Flowchart: Display the sum of the specified series

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to display the n terms of harmonic series and their sum.
Next: Write a program in C++ to display the sum of the series [ 1+x+x^2/2!+x^3/3!+....].

What is the difficulty level of this exercise?