题解 | 判断两个数的大小关系
判断两个数的大小关系
https://www.nowcoder.com/practice/f05358b9e8164b27871c87d3097f4dab
#include <stdio.h> int main() { int a,b; 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 if(a==b) printf("%d=%d\n",a,b); } return 0; }
这道题我本来没有用到while循环的,还是看到讨论区用到了while循环,我才知道怎么写,太痛苦了