#11974: JAVA AC


FaiWei (ChunWeiYeah)

學校 : 樹德科技大學
編號 : 61317
來源 : [220.143.87.171]
最後登入時間 :
2017-09-19 20:14:15
d143. 11172 - Relational Operators -- UVa11172 | From: [220.143.20.63] | 發表日期 : 2017-05-01 01:19

import java.util.Scanner;

public class bb{
public static void main(String[]argv){

Scanner sc=new Scanner(System.in);
int a,b;
int time=sc.nextInt();


for(int i=0;i<time;i++){

a=sc.nextInt();
b=sc.nextInt();

if(a>b)
System.out.println(">");
else if(a<b)
System.out.println("<");
else if(a==b)
System.out.println("=");


}
}
}

 

 
ZeroJudge Forum