欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

牛顿迭代法求平方根——逼近思想

程序员文章站 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;
}