#45529: 最近打了有點多UVA 11開頭的題目


1121226@stu.wghs.tp.edu.tw (Arthur✨小蜜蜂)

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [112.104.66.104]
最後登入時間 :
2025-03-30 12:41:08
d143. 11172 - Relational Operators -- UVa11172 | From: [60.248.154.139] | 發表日期 : 2025-03-13 13:02

#include <bits/stdc++.h>
using namespace std;
int main(){
    int n,a,b;
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>a>>b;
        if(a>b){ // 如果a>b
            cout<<">"<<endl;
        }
        else if(a<b){ // 如果a<b
            cout<<"<"<<endl;
        }
        else{ // 如果a=b
            cout<<"="<<endl;
        }
    }
}
 
ZeroJudge Forum