11172 - Relational Operator

Some operators checks about the relationship between two values and these operators are called relational operators. Given two numerical values your job is just to find out the relationship between them that is (i) First one is greater than the second (ii) First one is less than the second or (iii) First and second one is equal.

 

Input

First line of the input file is an integer t (t<15) which denotes how many sets of inputs are there. Each of the next t lines contain two integers a and b (|a|,|b|<1000000001). 

 

Output

For each line of input produce one line of output. This line contains any one of the relational operators “>”, “<” or “=”, which indicates the relation that is appropriate for the given two numbers.

 

Sample Input                          Output for Sample Input

3
10 20
20 10
10 10

=

 

 

解题思路:水题,判断大小输出符号

#include<stdio.h>
int main()
{int n,n1,n2;
scanf("%d",&n);
while(n--){
           scanf("%d%d",&n1,&n2);
           if((n1-n2)>0)printf(">\n");
           else if((n1-n2)<0)printf("<\n");
           else if((n1-n2)==0)printf("=\n");
           }
return 0;
}

 

posted on 2013-02-07 10:55  喂喂还债啦  阅读(250)  评论(0编辑  收藏  举报