Computer Science, asked by nabilanusrat, 8 months ago

A c program code of finding summation of the series (a+1)+(a+2)+.....(a+n) using for loop.

Answers

Answered by kunal20011503
0

The right answer is this ok.

Program to find sum of series 1 + 1/2 + 1/3 + 1/4 + .. + 1/n

If inverse of a sequence follows rule of an A.P i.e, Arithmetic progression, then it is said to be in Harmonic Progression.In general, the terms in a harmonic progression can be denoted as : 1/a, 1/(a + d), 1/(a + 2d), 1/(a + 3d) …. 1/(a + nd).

As Nth term of AP is given as ( a + (n – 1)d) .Hence, Nth term of harmonic progression is reciprocal of Nth term of AP, which is : 1/(a + (n – 1)d)

where “a” is the 1st term of AP and “d” is the common difference.

We can use a for loop to find sum.

C++

// C++ program to find sum of series

#include <iostream>

using namespace std;

  

// Function to return sum of 

// 1/1 + 1/2 + 1/3 + ..+ 1/n

class gfg

{

      

public : double sum(int n)

{

    double i, s = 0.0;

    for (i = 1; i <= n; i++)

    s = s + 1/i;

    return s;

}

};

  

// Driver code

int main()

{

    gfg g;

    int n = 5;

    cout << "Sum is " << g.sum(n);

    return 0;

}

Similar questions