#27545: CPP


qgd20040229@gmail.com (时年)

學校 : 不指定學校
編號 : 170559
來源 : [27.105.55.178]
最後登入時間 :
2021-10-10 23:00:28
d143. 11172 - Relational Operators -- UVa11172 | From: [27.105.55.178] | 發表日期 : 2021-10-10 23:52

#include <iostream>

using namespace std;

 

int main(){

  long int a, b, n;

  cin >> n;

  while (n--){

    cin >> a >> b;

    if (a<b)

    cout <<"<"<<endl;

    else if (a>b)

    cout <<">"<<endl;

    else

    cout << "=" <<endl; 

  }

}

 
ZeroJudge Forum