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

시리즈 1 + 1/2^2 + 1/3^3 + .....+ 1/n^n의 합을 찾는 C++ 프로그램

<시간/>

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

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

예시

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

출력

0.00032