C++ Examples

WAP in C++ to display sum of series [ 9 + 99 + 999 + 9999 …]

The program in C++ to display sum of series [ 9 + 99 + 999 + 9999 …] is given below:

#include <iostream>
using namespace std;

int main() {
    int n;
    long long sum = 0;

    cout << "Hello Codeauri Family,enter the number of terms in the series here: \n";
    cin >>n;

    for (int i = 1; i <= n; i++) {
        int num = 0;
        for (int j = 1; j <= i; j++) {
            num = num * 10 + 9;
        }
        sum += num;
    }
    cout << "The sum of the series [9 + 99 + 999 + 9999 ...] for " << n << " terms is: " << sum << endl;

    return 0;
}

Output:

Hello Codeauri Family,enter the number of terms in the series here:
10
The sum of the series [9 + 99 + 999 + 9999 …] for 10 terms is: 2521176508

Pro-Tips💡

This program prompts the user to enter an integer value for n,

and then uses two nested for loops to generate the first n terms of the series [ 9 + 99 + 999 + 9999 …] and calculate their sum.

The sum is then displayed at the end. Since the series sum is of order n^2, it’s a good practice to use long long variables.

Note that this program uses standard input/output library <iostream>

Learn C-Sharp ↗

C-sharp covers every topic to learn about C-Sharp thoroughly.

Learn C Programming ↗

C-Programming covers every topic to learn about C-Sharp thoroughly.

Learn C++ Programming↗

C++ covers every topic to learn about C-Sharp thoroughly.

Codeauri is Code Learning Hub and Community for every Coder to learn Coding by navigating Structurally from Basic Programming to Front-End Development, Back-End Development to Database, and many more.

Related Posts

C# Program to Find Sum of Rows & Columns of a Matrix

The Program in C# Program to Find Sum of Rows & Columns of a Matrix is given below: Output: Hello Codeauri Family,enter the number of rows and columns…

C# Program to Calculate Determinant of Given Matrix

The Program in C# Program to Calculate Determinant of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns of the matrix…

C# Program to Find Sum of right Diagonals of a Matrix

The Program in C# Program to Find Sum of right Diagonals of a Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns…

C# Program to Find Transpose of Given Matrix

The Program in C# Program to Find Transpose of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns in the matrix:22Enter…

C# Program for Multiplication of two square Matrices

The Program in C# Program for Multiplication of two square Matrices is given below: Output: Hello Codeauri Family, enter the number of rows/columns in the matrices:2Enter the elements…

C# Program to Delete Element at Desired position From Array

The Program in C# Program to Delete Element at Desired position From Array is given below: Output: Hello Codeauri Family, enter the number of elements in the array:4Enter…

Leave a Reply

Your email address will not be published. Required fields are marked *

Your Journey into Code Begins Now: Discover the Wonders of Basic Programming

X