Relational Operators Input: Standard Input

Output: Standard Output

 

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

=

 


Problem-setter: Shahriar Manzoor

#include"stdio.h"
int main()
{
 int T,i;   
 double a,b;  
 while(scanf("%d",&T)!=EOF)//输入投下多少套的数值;
  for(i=0;i<T;i++)//为输入数值循环多少套;
  {
  scanf("%lf%lf",&a,&b);输入需要比较的两个整数;
  if(a>b)//一系列的if语句开始判断;
  printf(">\n");
  else if(a<b)
  printf("<\n");
  else printf("=\n");
  }                         
 return 0; 
}

 

posted on 2013-02-17 23:53  LOVE小熊ing  阅读(165)  评论(0编辑  收藏  举报