[求助]C-Free3.5不能比较,哪里错了?
#include <stdio.h>#include <math.h>
int max(int x,int y)
{return(x>y?x:y);}
main()
{
int num1,num2;
printf("Input the first integer number:");
scanf("%d",&num1);
printf("Input the second integer number:");
scanf("%d",&num2);
printf("max=%d\n",max(num1,num2));
}
我第一次照搬程序,但不知道为什么,可以输入数字,但不能比较。我用的C-Free 3.5
第一次学,什么都不懂.所以只有求教于各位大大了`