| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 507 人关注过本帖
标题:[求助]1/1!+1/2!-1/3!……+1/8!怎么编?
只看楼主 加入收藏
duyao
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2005-12-20
收藏
 问题点数:0 回复次数:3 
[求助]1/1!+1/2!-1/3!……+1/8!怎么编?
哦是新手~~
2005-12-20 21:39
新坏男人
Rank: 1
等 级:新手上路
威 望:1
帖 子:38
专家分:0
注 册:2005-12-7
收藏
得分:0 

#include <stdio.h>

void main()
{
double pi=0;

double a=1.0,k=1.0;

for(int i=0;i<=10;i++)

{
pi+=k*1.0/a;
k=-k;
a++;
a*=a;
}

printf("%lf\n",pi);
}


/UploadFile/2005-11/2005112317153975.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www./UploadFile/2005-11/2005112317153975.gif');}" onmousewheel="return imgzoom(this);" alt="" />
2005-12-20 22:02
wanglff
Rank: 2
等 级:新手上路
威 望:5
帖 子:375
专家分:0
注 册:2005-12-21
收藏
得分:0 


#include<stdio.h>
#include<math.h>
main()
{
float m;
double s=0,t;
for(m=1;m<9;m++)
{

s=s+1/m;
t=-t;
m++;
m=m*m;
}
printf("%lf\n",s);
}


自强不息:)
2005-12-21 13:19
jupiter_201
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2005-12-21
收藏
得分:0 

main()
{
float sum=1,n,k=1,i,j;
for(j=2;j<=8;j++)
{n=1;

for(i=1;i<=j;i++)

n*=i;

sum=sum+1.0/n*k;

k=-k;

}

printf("\n%f",sum);

}
结果是:1.367882

2005-12-21 20:36
快速回复:[求助]1/1!+1/2!-1/3!……+1/8!怎么编?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029335 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved