#25062: ternary operator


cooljamesku92@gmail.com (你要不要訂閱一塊沒有影片的餅乾owo)

學校 : 臺北市立大同高級中學
編號 : 87502
來源 : [114.36.182.35]
最後登入時間 :
2021-11-19 20:47:58
d143. 11172 - Relational Operators -- UVa11172 | From: [114.24.14.196] | 發表日期 : 2021-04-18 11:51

#include<iostream>

using namespace std;

int main()

{

int n, a, b;

cin >> n;

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

cin >> a >> b;

cout << (a > b ? '>' : (a == b ? '=' : '<')) << endl;

}

return 0;

}

 
ZeroJudge Forum