标签:can color std code 1.0 nbsp out 编写 clu
本题要求编写程序,计算序列部分和 1 - 1/4 + 1/7 - 1/10 + ... 直到最后一项的绝对值不大于给定精度eps。
输入在一行中给出一个正实数eps。
在一行中按照“sum = S”的格式输出部分和的值S,精确到小数点后六位。题目保证计算结果不超过双精度范围。
4E-2
sum = 0.854457
0.02
sum = 0.826310
#include<stdio.h> #include<math.h> int main() { int flag=1,k=1;//flag表示正负号交替 double n,sum=0,temp=1; scanf("%lf",&n); while(fabs(temp)>n) { temp=flag*1.0/(3*k-2);//这l里的1一定要用1.0,或者你的k定义为double型。 sum+=temp; flag=-flag; k++; } printf("%f\n",sum); return 0; }
标签:can color std code 1.0 nbsp out 编写 clu
原文地址:https://www.cnblogs.com/2228212230qq/p/9288541.html