> 其他 >
#include
#include,
main()
{int s;
float n,t,p;
t=1.0;
p=0;
n=1.0;
s=1;
while(fabs(t)>=1e-6);
{p=p+t;
n+=2.0
s=-s;
t=s/n;
}
p=4*p;
pintf("p=%f\n",p);
}
最后怎么输出--------------------Configuration:Cpp1 - Win32 Debug--------------------
Compiling...
Error spawning cl.exe
Cpp1.obj - 1 error(s),0 warning(s) 到底是哪里出错了啊
人气:176 ℃ 时间:2020-08-14 14:46:41
解答
第二行多个逗号,while那一行最后的分号去掉!改回来了还是错误啊还有哪里有问题吗 麻烦帮我看看 谢了啊#include#include main(){int s;float n,t,p;t=1.0;p=0;n=1.0; s=1; while(fabs(t)>=1e-6){p=p+t;n+=2.0; s=-s;t=s/n;}p=4*p;pintf("p=%f\n",p);}while(fabs(t)>=1e-6)更改为while(fabs(t)>=1*e-6)怎么还是错误啊 郁闷
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版