#32944: cpp aaaaaaaaaaaaaa11111111113333333355555555


yp11151025@yphs.tp.edu.tw (803-23江紘宇)

學校 : 臺北市私立延平高級中學
編號 : 196814
來源 : [203.72.178.1]
最後登入時間 :
2024-01-15 16:38:36
a135. 12250 - Language Detection -- UVa12250 | From: [203.72.178.2] | 發表日期 : 2022-11-18 13:40

#include<iostream>
#include<string>
using namespace std;
int main(){
    string s;
    int i=1;
    while(cin>>s){
        if(s=="#")break;
        cout<<"Case "<<i<<": ";i++;
        if(s=="HELLO") cout<<"ENGLISH"<<endl;
        else if(s=="HOLA") cout<<"SPANISH"<<endl;
        else if(s=="BONJOUR") cout<<"FRENCH"<<endl;
        else if(s=="HALLO") cout<<"GERMAN"<<endl;
        else if(s=="CIAO") cout<<"ITALIAN"<<endl;
        else if(s=="ZDRAVSTVUJTE") cout<<"RUSSIAN"<<endl;
        else cout<<"UNKNOWN"<<endl;
    }
return 0;
}

 
ZeroJudge Forum