求C语大神,用迭代法求某数a的平方根,已知迭代公式为x1=1/2(x0+a/x0)

问题描述:

求C语大神,用迭代法求某数a的平方根,已知迭代公式为x1=1/2(x0+a/x0)
用for语句编写程序

#include"stdio.h"#include"math.h"void main(){float a,x0,x1; printf("Input a:"); scanf("%f",&a); if(a<0) printf("Error!\n{...