#include <stdio.h>

#include <math.h>

void main()

{

double a, b, c, d, x1, x2;

scanf_s("%f %f %f", &a, &b, &c);

d=b*b-4*a*c;

if(d>=0)

{

x1=(-b+sqrt(d))/(2*a);

x2=(-b-sqrt(d))/(2*a);

printf("x1=? x2=?", x1, x2);

} else printf("허근");

}


아무리 찾고 다른 사람들은 어떻게 짯나 검새해서 보고 비교해봐도


왜 허근만 나오는지 모르겠어


도와줘