关于Scanf函数的格式控制问题
编写一个计算二次方程的根的程序如下:#include<stdio.h>
#include<math.h>
int main ()
{double a,b,c,disc,x1,x2,p,q;
scanf("%lf%lf%lf",&a,&b,&c);
disc=b*b-4*a*c;
if (disc<0)
printf("not\n");
else
{p=-b/(2*a);
q=sqrt(disc)/(2*a);
x1=p+q;
x2=p-q;
printf("%f,%f\n",x1,x2);
}
return 0;
}
运行结果:
6 3 1
not
Press any key to continue
2 4 1
-0.292893,-1.707107
Press any key to continue
当将scanf函数改为scanf("%f%f%f",&a,&b,&c);
运行结果;
6 3 1
not
Press any key to continue
2 4 1
not
Press any key to continue
不能正确计算判断判别式的大小
只是改变了scanf函数的格式控制,不明白为什么会造成这种结果,请大神帮忙解答