参考代码如下:
#include int main(){ double a,b,c,d; printf("Please input a,b,c:"); scanf("%lf %lf %lf",&a,&b,&c); d=b*b-4*a*c; printf("d=%.2f",d);}
执行效果如下: