#43131: 別忘了 UNKNOW


yp11351280@yphs.tp.edu.tw (710-43)

學校 : 臺北市私立延平高級中學
編號 : 276272
來源 : [203.72.178.1]
最後登入時間 :
2024-11-07 17:46:46
a135. 12250 - Language Detection -- UVa12250 | From: [203.72.178.1] | 發表日期 : 2024-10-17 17:51

#include<iostream>
#include<bits/stdc++.h> 
using namespace std;
int main() {
    
    string a;
    int c=0;
    while(cin>>a) {
        c++;
        if(a=="HELLO") cout<<"Case "<<c<<": ENGLISH"<<endl;
        else if(a=="HOLA") cout<<"Case "<<c<<": SPANISH"<<endl;    
        else if(a=="HALLO") cout<<"Case "<<c<<": GERMAN"<<endl;
        else if(a=="BONJOUR") cout<<"Case "<<c<<": FRENCH"<<endl;
        else if(a=="CIAO") cout<<"Case "<<c<<": ITALIAN"<<endl;
        else if(a=="ZDRAVSTVUJTE") cout<<"Case "<<c<<": RUSSIAN"<<endl;
        else if(a=="#") break;
        else cout<<"Case "<<c<<": UNKNOWN"<<endl;
    }
}

 
ZeroJudge Forum