回 帖 发 新 帖 刷新版面

主题:请各位大大帮我解疑

#include "stdafx.h"
#include <stdio.h>
#include <math.h>
int main(int argc, char* argv[])
{float a,x0,x1;
  scanf("%f",&a);
  x0=a/2;
  x1=(x0+a/x0)/2;
  do{x0=x1;
     x1=(x0+a/x0)/2;
     }
  while(fabs(x0-x1)>=le-5);
  printf("The square root of %5.2f is %8.5f\n",a,x1);

    return 0;
}

回复列表 (共1个回复)

沙发


[em1][em1][em1]
//#include "stdafx.h"
#include <stdio.h>
#include <math.h>
int main(int argc, char* argv[])
{float a,x0,x1;
  scanf("%f",&a);
  x0=a/2;
  x1=(x0+a/x0)/2;
  do{x0=x1;
     x1=(x0+a/x0)/2;
     }
  while(fabs(x0-x1)>=[color=FF0000]1e[/color]-5);1是数字非字母
  printf("The square root of %5.2f is %8.5f\n",a,x1);

    return 0;
}

评分哟!!!![em1][em1]

我来回复

您尚未登录,请登录后再回复。点此登录或注册