题解 | 判断两个数的大小关系
// #include <math.h> #include <stdio.h> // int main() { // int a, b; // while (scanf("%d %d", &a, &b) != EOF) { // 注意 while 处理多个 case // // 64 位输出请用 printf("%lld") to // printf("%d\n", a + b); // } // return 0; // } int main() { int a=0; int b=0; while(scanf("%d %d",&a,&b)!=EOF) if (a>b) printf("%d>%d\n",a,b); else if (a==b) printf("%d=%d\n",a,b); else printf("%d<%d\n",a,b); return 0; }