小白求各位大佬改正一下我这个求根的程序
无论abc输什么,结果都是,有两个不等实根
x1=0,x2=-92559.....................................
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
void main( )
{double a,b,c,x1,x2,det,i;
scanf("%lf,%lf ,%lf" ,&a,&b,&c);
det=b*b-4*a*c;
if(a==0)
{printf("该方程不是二次方程!");
}
else if(det>0)
{
x1=(-b+sqrt(det))/(2*a),x2=(-b-sqrt(det))/(2*a);
printf("有两个不等实根:\n x1=%lf x2=%lf");
}
else if(det==0)
{
x1=x2=-b/(2*a);
printf("有两个相等实根:\n x1=x2=%lf");
}
else if(det<0)
{
x1=(-b+(sqrt(det))*i)/(2*a),x2=(-b- (sqrt(det))*i)/(2*a);
printf("有两个共轭复根:\n x1=%lf x2=%lf");
}
}