牛顿迭代法求解平方根

#include<stdio.h>
#include<math.h>
int main()
{
double a,x;
double y=0;
a = 17895.4;//测试数据
x = (int)(a/2);//x0
while(fabs(x-y)>=1.0e-5){
y = x;
x = 0.5*(x+a/x);
}
printf("sqrt(%lf)=%lf",a,x);
return 0;
}

 

详细理论基础可以参考数学分析的教材。。

你可能感兴趣的:(牛顿迭代法求解平方根)