//谁能分析一下这两种求值顺序对结果的影响 #include<stdio.h> #include<math.h> int main() { double pi = 0,i=1,temp = 1; int count1 = 1,count2 = 0; //3.141591 while(fabs(temp)>=1e-6) { pi += temp; i = i+2; temp = pow(-1,count1++)*1.0/i; } //3.141595 //while(fabs(temp)>=1e-6) //{ // temp = pow(-1,count2++)*1.0/i; // pi += temp; // i = i+2; //} pi = pi*4; printf("%.6f",pi); return 0; }
0.0分
0 人评分
A+B for Input-Output Practice (IV) (C语言代码)浏览:551 |
弟弟的作业 (C++代码)浏览:1342 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:790 |
打水问题 (C语言代码)浏览:1147 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:660 |
WU-整除问题 (C++代码)浏览:648 |
WU-拆分位数 (C++代码)浏览:819 |
C语言程序设计教程(第三版)课后习题6.6 (C++代码)浏览:649 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:583 |
printf基础练习2 (C语言代码)浏览:653 |