经过修改代码还是行不通,大家帮忙看看
#include <stdio.h>#include <math.h>
void main ()
{ int a,b,c,d,e,f;
scanf("a=%d,b=%d,c=%d",&a,&b,&c);
d=sqrt(b*b-4*a*c);
if (d>0)
{e=(-b+d)/(2*a);
f=(-b-d)/(2*a);}
printf("e=%d,f=%d/n",e,f);
else
printf("您所输入的结果不存在/n");
}