此帖出自单片机论坛
最新回复
兄弟, 这是我们C语言书上的一个例题啊。
这种自己动一下脑了。
#include
#include
void main()
{
float a,x0,x1;
printf("enter a positive number:");
scanf("%f",&a); /*输入a的值*/
x0=a/2;
x1=(x0+a/x0)/2;
do
{
x0=x1;
x1=(x0+a/x0)/2;
}
while(fabs(x0-x1)>=1e-5);
printf("The square root of %5.2f is %8.5f\n",a,x1);
}
详情
回复
发表于 2007-2-27 14:07
| ||
|
||
Re: C语言问题
此帖出自单片机论坛
| ||
|
||
| |
|
|
| |
|
|
EEWorld Datasheet 技术支持