用C语言如何编程求出"派“的值(3.141592654......)
4个回答
推荐于2018-04-21
展开全部
#include <stdio.h>
#include <math.h>
int main(int argc, char* argv[])
{
int s;
float n,t,pi;
t = 1.0;
pi = 0;
n=1.0;
s = 1;
while(fabs(t) >= 1e-6)
{
pi = pi + t;
n = n + 2.0f;
s = -s;
t = s / n;
}
pi = pi * 4;
printf("pi=%f\n",pi);
return 0;
}
#include <math.h>
int main(int argc, char* argv[])
{
int s;
float n,t,pi;
t = 1.0;
pi = 0;
n=1.0;
s = 1;
while(fabs(t) >= 1e-6)
{
pi = pi + t;
n = n + 2.0f;
s = -s;
t = s / n;
}
pi = pi * 4;
printf("pi=%f\n",pi);
return 0;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个你可以采用不同的算法实现。如刘徽割圆法,幂级数法、数值积分法等。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
#include<math.h>
int main()
{
double PI = 2*acos(0);
printf("%lf\n",PI);
return 0;
}
#include<math.h>
int main()
{
double PI = 2*acos(0);
printf("%lf\n",PI);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
long a=10000,b,c=2800,d,e,f[2801],g;
int main()
{
for(;b-c;)f[b++]=a/5;
for(;d=0,g=c*2;c-=14,printf("%.4d",e+d/a),e=d%a)
for(b=c; d+=f[b]*a, f[b]=d%--g, d/=g--, --b; d*=b);
return 0;
}
long a=10000,b,c=2800,d,e,f[2801],g;
int main()
{
for(;b-c;)f[b++]=a/5;
for(;d=0,g=c*2;c-=14,printf("%.4d",e+d/a),e=d%a)
for(b=c; d+=f[b]*a, f[b]=d%--g, d/=g--, --b; d*=b);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询