#45085: C++ easy 比其他人教的簡單多了


1121228@stu.wghs.tp.edu.tw (你知道我是誰嗎!!??)

學校 : 臺北市立建國高級中學
編號 : 266561
來源 : [60.248.154.143]
最後登入時間 :
2025-03-28 09:48:03
k630. 產生隨機亂數1 | From: [60.248.154.139] | 發表日期 : 2025-01-06 13:24

#include <bits/stdc++.h>

using namespace std;

// 比較兩數字的大小(因為 a, b, c 有可能大於 long long int 的範圍)
bool compare(string a, string b) {
    if (a.size() != b.size()) return a.size() > b.size();
    return a > b;
}

int main() {
    int S;
    string a, b, c;
    cin >> S;
    while (S--) {
        cin >> a >> b >> c;
        if (compare(a, b)) {
            if (compare(a, c)) cout << a << endl;
            else cout << c << endl;
        } else {
            if (compare(b, c)) cout << b << endl;
            else cout << c << endl;
        }
    }
    return 0;
}
 
#45086: Re: C++ easy 比其他人教的簡單多了


1121228@stu.wghs.tp.edu.tw (你知道我是誰嗎!!??)

學校 : 臺北市立建國高級中學
編號 : 266561
來源 : [60.248.154.143]
最後登入時間 :
2025-03-28 09:48:03
k630. 產生隨機亂數1 | From: [60.248.154.139] | 發表日期 : 2025-01-06 13:27

抱歉 貼錯題了 這是

b898: 1. 畢氏定理

 
ZeroJudge Forum