标签:
#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;
}
详细理论基础可以参考数学分析的教材。。
标签:
原文地址:http://www.cnblogs.com/programforjoy-yiyuan01/p/4392212.html