C ++程序找到序列1 + 1/2 ^ 2 + 1/3 ^ 3 +….. + 1 / n ^ n的和
在本教程中,我们将讨论一个程序,用于查找给定序列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
热门推荐
10 儿子立冬祝福语简短独特
11 对当兵的祝福语简短
12 侄儿高考试祝福语简短
13 伴郎红包祝福语朋友简短
14 媳妇生日简短祝福语朋友
15 公司年会祝福语简短最好
16 元旦感恩祝福语简短大全
17 红包祝福语简短10字
18 周六早晨祝福语简短