#44992: C++ map用法 (我也是剛學會 其實不難 不像其他人教的那麼難或暴力)


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

學校 : 臺北市立建國高級中學
編號 : 266561
來源 : [60.248.154.143]
最後登入時間 :
2025-03-28 09:48:03
a135. 12250 - Language Detection -- UVa12250 | From: [218.172.29.125] | 發表日期 : 2024-12-31 21:29

#include <bits/stdc++.h>

using namespace std;

int main() {
    string S, key;
    int t = 1;
    map<string, string> country{    // 先建一個6個國家的對照表
        {"HELLO", "ENGLISH"},
        {"HOLA", "SPANISH"},
        {"HALLO", "GERMAN"},
        {"BONJOUR", "FRENCH"},
        {"CIAO", "ITALIAN"},
        {"ZDRAVSTVUJTE", "RUSSIAN"}
    };
    while(cin >> S && S != "#"){
        cout << "Case " << t << ": ";
        // 利用 map 中的 find 查看是否有對應的 key (country.end() 是沒有對應 key)
        cout << ((country.find(S) != country.end()) ? country[S] : "UNKNOWN") << endl;
        t++;    // 紀錄是 case 幾
    }
    return 0;
}
 
ZeroJudge Forum