当前位置: 首页 > 工具软件 > Relational > 使用案例 >

Relational Operator

高胜
2023-12-01

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2113 判断两个数的大小,输出>或<或=

#include<stdio.h>

int main(){

    int t;

    long a,b;

    scanf("%d",&t);

    while(t--){

  scanf("%ld%ld",&a,&b);

  if(a>b)printf(">\n");

  else if(a==b)printf("=\n");

  else printf("<\n"); }

return 0;

}  

转载于:https://www.cnblogs.com/sujunjie/archive/2013/02/28/2937579.html

 类似资料:

相关阅读

相关文章

相关问答