C++ Examples

WAP in C++ to Display n terms of harmonic series ,Sum

The program in C++ to Display n terms of harmonic series and their Sum is given below:

#include <iostream>
using namespace std;

int main() {
    int n;
    double sum = 0.0;

    cout<< "Hello Codeauri Family, enter the value of n to find the harmonic series: \n";
    cin >>n;

    cout << "The first " << n << " terms of the harmonic series are: ";
    for (int i = 1; i <= n; i++) {
        cout << "1/" << i << " + ";
        sum += 1.0 / i;
    }
    cout << endl;
    cout << "Well,the Sum of the first " << n << " terms of the harmonic series is: " << sum << endl;

    return 0;
}

Output:

Hello Codeauri Family, enter the value of n to find the harmonic series:
9
The first 9 terms of the harmonic series are: 1/1 + 1/2 + 1/3 + 1/4 + 1/5 + 1/6 + 1/7 + 1/8 + 1/9 +
Well,the Sum of the first 9 terms of the harmonic series is: 2.82897

Pro-Tips💡

This program prompts the user to enter an integer value for n, and then uses a for loop to print out the first n terms of the harmonic series and calculate their sum.

The sum is then displayed at the end.

Since the harmonic series sum converges to log(n) , it’s a good practice to use floating point variable instead of integers.

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