题目:请将源程序补充完整。编程求π的近似值(直到最后一项的值小于10的负5次方为止): π/2=1+1/3+1*2/(3*5)+1*2*3/(3*5*7)+1*2*3*4/(3*5*7*9)+... 源程序: #include"stdio.h" main() { double s=0,t=1; int i; i=[1]; while([2]) { s=s+t; t=[3]; i=i+1; } s=[4]; printf("圆周率为:%f\\n",[5]); }
2019-01-20
正确答案:【1】1 【2】t>=1e-5 【3】t*i/(2*i+1) 【4】s*2 【5】s
试题解析:略