看到这个结果我很纠结,为何和教科书上的输出不一样呢
代码如下 #include <stdio.h>
#include <math.h>
void main()
{
float a,b,c,p,q,x1,x2,dise;
scanf("a=%f,b=%f,c=%f",&a,&b,&c);
dise=b*b-4*a*c;
p=-b/(2*a);
q=sqrt(dise)/(2*a);
x1=p+q;
x2=p-q;
printf("x1=%5.2f,x2=%5.2f\n",x1,x2);
}
当 a=1 b=3 c=2 时 运行输出的结果是 x1=-1.#J,x2=-1#J 什么东西啊这是