回复 10楼 world2006
#include<stdio.h>int main()
{
int a,b;
printf("Input two numbers:");
scanf("%d %d",&a,&b");
if(a!=b)
{if(a>b) printf("a>b");
else printf("a<b");
}
else {printf("a=b");}
return 0;
}
第六行scanf语句&b后面多个引号
并且你输出的是 a b 并非数字
如果要输出数字应该改为
printf("%d>%d",a,b);
printf("%d<%d",a,b);
printf("%d=%d",a,b);