xt3-23.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4. int main()
  5.  {float a,x0,x1;
  6.   cout<<"enter a positive number:";
  7.   cin>>a;            // 输入a的值 
  8.   x0=a/2;
  9.   x1=(x0+a/x0)/2;
  10.   do
  11.     {x0=x1;
  12.      x1=(x0+a/x0)/2;
  13.      }
  14.   while(fabs(x0-x1)>=1e-5);
  15.   cout<<"The square root of "<<a<<" is "<<x1<<endl;
  16.   return 0;
  17.  } 
  18.