Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

급수의 합을 찾는 C++ 프로그램 (1/a + 2/a^2 + 3/a^3 + … + n/a^n)

<시간/>

이 튜토리얼에서는 주어진 급수의 합(1/a + 2/a^2 + 3/a^3 + … + n/a^n)을 찾는 프로그램에 대해 논의할 것입니다.

이를 위해 우리는 n의 값이 주어질 것이고 우리의 임무는 주어진 급수의 합을 찾기 위해 첫 번째 항부터 시작하여 모든 항을 더하는 것입니다.

예시

#include <iostream>
#include <math.h>
using namespace std;
//calculating the sum of the series
float calc_sum(int a, int n) {
   int i;
   float sum = 0;
   for (i = 1; i <= n; i++)
   sum += (i/ pow(a, i));
   return sum;
}
int main() {
   int a = 3, n = 4;
   float res = calc_sum(a,n);
   cout << res << endl;
   return 0;
}

출력

0.716049