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

C#编程

开发平台:

Visual C++

  1. //5_7
  2. #include <iostream.h>
  3. #include <math.h>
  4. void main()
  5. {
  6.   double x, y;
  7.   x = 3.14159/4;
  8.   do{
  9.     y = x;
  10.     //x-=(cos(x)-x)/(sin(x)-1);
  11.     x = cos(x);
  12.   }while(fabs(x-y)>1e-6);
  13.   cout <<x <<endl;
  14. }
  15. //答案为: 0.739085