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 n terms of harmonic series and their sum

C++ For Loop: Exercise-22 with Solution

Write a program in C++ to display the n terms of harmonic series and their sum.
1 + 1/2 + 1/3 + 1/4 + 1/5 ... 1/n terms

Pictorial Presentation:

C++ Exercises: Display the n terms of harmonic series and their sum

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int i, n;
    float s = 0.0;
    cout << "\n\n Display n terms of harmonic series and their sum:\n";
    cout << " The harmonic series: 1 + 1/2 + 1/3 + 1/4 + 1/5 ... 1/n terms\n";
    cout << "-----------------------------------------------------------------\n";
    cout << " Input number of terms: ";
    cin >> n;
    for (i = 1; i <= n; i++) 
    {
        if (i < n) 
        {
            cout << "1/" << i << " + ";
            s += 1 / (float)i;
        }
        if (i == n) 
        {
            cout << "1/" << i;
            s += 1 / (float)i;
        }
    }
    cout << "\n The sum of the series upto " << n << " terms: " << s << 

endl;
}

Sample Output:

 Display n terms of harmonic series and their sum:                     
 The harmonic series: 1 + 1/2 + 1/3 + 1/4 + 1/5 ... 1/n terms          
-----------------------------------------------------------------      
 Input number of terms: 5                                              
1/1 + 1/2 + 1/3 + 1/4 + 1/5                                            
 The sum of the series upto 5 terms: 2.28333   

Flowchart:

Flowchart: Display the n terms of harmonic series and their sum

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to display the n terms of even natural number and their sum.
Next: Write a program in C++ to display the sum of the series [ 9 + 99 + 999 + 9999 ...].

What is the difficulty level of this exercise?