.编写函数fun,它的功能是:计算并输出下列级数和:1 1 1 S = —— + —— + … + ——— 1×2 2×3 n(n+1
问题描述:
.编写函数fun,它的功能是:计算并输出下列级数和:1 1 1 S = —— + —— + … + ——— 1×2 2×3 n(n+1
答
int fun(int n)
{int s=0;
for(int i=1;i我的题目是这个 编写函数fun, 它的功能是: 计算并输出下列级数和:111S = ── + ── + … + ───1×2 2×3n(n+1)例如: 当n = 15时, 函数值为: 0.937500。double fun(int n){double s=0;int a;for(int i=1;i