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: Find the sum of the series 1 +11 + 111 + 1111 + .. n terms

C++ For Loop: Exercise-26 with Solution

Write a program in C++ to find the sum of the series 1 +11 + 111 + 1111 + .. n terms.

Pictorial Presentation:

C++ Exercises: Find the sum of the series 1 +11 + 111 + 1111 + .. n terms

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int n, i, sum = 0;
    int t = 1;
    cout << "\n\n Display the sum of the series 1 +11 + 111 + 1111 + .. n terms:\n";
    cout << "-------------------------------------------------------------------\n";
    cout << " Input number of terms: ";
    cin >> n;
    for (i = 1; i <= n; i++) 
    {
        cout << t << " ";
        if (i < n) 
        {
            cout << "+ ";
        }
        sum = sum + t;
        t = (t * 10) + 1;
    }
    cout << "\n The sum of the series is: " << sum << endl;
}

Sample Output:

 Display the sum of the series 1 +11 + 111 + 1111 + .. n terms:        
-------------------------------------------------------------------    
 Input number of terms: 5                                              
1 + 11 + 111 + 1111 + 11111                                            
 The sum of the series is: 12345  

Flowchart:

Flowchart: Find the sum of the series 1 +11 + 111 + 1111 + .. n terms

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the sum of the series [ x - x^3 + x^5 + ......].
Next: Write a program in C++ to display the first n terms of Fibonacci series.

.

What is the difficulty level of this exercise?