编写函数fun,函数的功能是:根据以下公式计算s,计算结果作为函数值返回;n通过形参传入。 1 1 1 S=1 + ── + ─── + ... + ────── 1+2 1+2+3 1+2+3+...+n
时间: 2023-04-02 19:01:50 浏览: 236
C语言程序设计-编写函数fun其功能是:根据整型形参m,计算如下公式的值:y=12!+14!+…+1m!(m是偶数)
好的,这是一个关于数学的问题。函数fun的代码如下:
double fun(int n){
double s = ;
for(int i = 1; i <= n; i++){
double temp = 1;
for(int j = 1; j <= i; j++){
temp *= j;
}
s += 1 / temp;
}
return s;
}
当n等于1时,函数fun的返回值为1;当n等于2时,函数fun的返回值为1.5;当n等于3时,函数fun的返回值为1.6666666666666667;以此类推。
阅读全文