牛顿迭代法求平方根——逼近思想
程序员文章站
2024-03-18 08:11:40
...
#include<bits/stdc++.h>
using namespace std;
int main()
{
float a;
cin>>a;
int x0 = a/2;
int x1 = (x0+a/x0)/2;
do
{
x0=x1;
x1=(x0+a/x0)/2;
}
while(fabs(x1-x0)>=1e-5);
cout<<x1<<endl; //实际上是利用了 数列的极限
return 0;
}
上一篇: 二分查找法(折半查找法)的实现
下一篇: lua 计算utf8字符串的长度