ch4_4.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch4_4.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. #include <iomanip.h>
  6. #include <math.h>
  7. void main()
  8. {
  9.   double s=0,x=1;  //初始值
  10.   long k=1;
  11.   int sign=1;
  12.   while(fabs(x)>1e-8){   //项值在比较前要先求绝对值
  13.     s += x;
  14.     k += 2;
  15.     sign *= -1;
  16.     x = sign/double(k);  //强制转换使x得到浮点数值
  17.   }
  18.   s *= 4;                //π值
  19.   cout <<"the pi is "    //输出
  20.        <<setiosflags(ios::fixed)
  21.        <<setprecision(8)
  22.        <<s <<endl;
  23. }