作业帮 > 综合 > 作业

#include#include,main(){int s;float n,t,p;t=1.0;p=0;n=1.0;s=

来源:学生作业帮 编辑:搜搜考试网作业帮 分类:综合作业 时间:2024/06/04 17:26:07
#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) 到底是哪里出错了啊
#include#include,main(){int s;float n,t,p;t=1.0;p=0;n=1.0;s=
第二行多个逗号,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)
再问: 怎么还是错误啊 郁闷