当前位置: 代码迷 >> C语言 >> [求助]关于c-free软件
  详细解决方案

[求助]关于c-free软件

热度:168   发布时间:2007-01-02 22:32:11.0
[求助]关于c-free软件
这是一道解放程求根的题
#include <stdio.h>
#include <math.h>
main()
{
float a,b,c,x1,x2,dt,p,q;
printf("input a,b,c:");
scanf("%f%f%f",&a,&b,&c);
dt=sqrt(b*b-4*a*c);
p=-b/(2*a);
q=dt/(2*a);
x1=p+q;
x2=p-q;
printf("x1=%f,x2=%f\n",x1,x2);
}

用TC编译没有问题,可是用c-free3.5编译就出现这样的执行结果了
input a,b,c:1 2 3
x1=-1.#IND00,x2=-1.#IND00
Press any key to continue...

请问x1和x2的值怎么变成这样了呢?
搜索更多相关的解决方案: 软件  

----------------解决方案--------------------------------------------------------
判别式b*b-4*a*c<0时无解.调用sqrt的时候出错。
----------------解决方案--------------------------------------------------------
哦,想起来了,谢谢您的提示!
应该加上判定语句就可以了~

#include <stdio.h>
#include <math.h>
main()
{
float a,b,c,x1,x2,dt,p,q;
printf("input a,b,c:");
scanf("%f%f%f",&a,&b,&c);

if ((b*b-4*a*c)>=0)
{
dt=sqrt(b*b-4*a*c);
p=-b/(2*a);
q=dt/(2*a);
x1=p+q;
x2=p-q;
printf("x1=%f,x2=%f\n",x1,x2);
}
else
printf("error........");
}
----------------解决方案--------------------------------------------------------