<C语言迭代法-百科大全-春风百科
> 百科大全 > 列表
C语言迭代法
时间:2024-12-23 20:27:05
答案

while 和do while是不同地

第二个改成

#include

#include

main()

{float x,t,c;

int a;

scanf("%d",&a);

x=1;

t=x;x=(1.0/2)*(x+a/x);c=x-t;

while(fabs(c)/x>1e-5)

{

t=x;x=(1.0/2)*(x+a/x);c=x-t;

}

printf("%f",x);

getch();

}

才会等价于第一个程序

推荐
© 2024 春风百科