这个问题出在哪了,请问高手们?谢谢!
#include <stdio.h>#include <math.h>
#define judge(a,b,c) pow(b,2)-4*(a)*(c)
int main( void )
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
printf("判别式为:%16d\n",judge(a,b,c));
return 0;
}
2017-05-30 21:03
2017-06-02 22:07
2017-06-02 22:08
2017-06-02 22:09