奥礼网
新记
C语言编写函数求:1-1/2+1/3-1/4+1/5-1/6+...1/n的值怎么做?结果是什么呢?
如题所述
举报该文章
相关建议 2017-08-26
#include<
stdio.h
>
int main()
{int n,i;
double s=0;
scanf("%d",&n);
for(i=1;i<=n;i++)
if(i%2)s+=1.0/i;
else s-=1.0/i;
printf("%g\n",s);
return 0;
}
温馨提示:内容为网友见解,仅供参考
当前网址:
https://aolonic.com/aa/15gdndwnkak113dddnd.html
其他看法
无其他回答
相似回答
大家正在搜
相关问题
C语言编写函数求:1-1/2+1/3-1/4+1/5-1/6...
用c语言编写函数求表达式1-1/2+1/3-1/4+1/5-...
用C语言编程:求1-1/2+1/3-1/4+1/5-1/6+...
c语言 1-1/2+1/3-1/4+1/5-1/6+...1...
用C语言编写程序求1-1/2+1/3-1/4+1/5-1/6...
用C语言编程计算 1+ 1/2 - 1/3 + 1/4 - ...
c语言编程:1、求1+1/2+1/3+1/4+……+1/20...