#11694: 解答


CherryChen (방탄소년단♥김남준)

學校 : 臺北市私立延平高級中學
編號 : 60209
來源 : [180.217.243.178]
最後登入時間 :
2022-11-17 10:03:25
a135. 12250 - Language Detection -- UVa12250 | From: [118.150.77.192] | 發表日期 : 2017-01-29 21:23

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

}

 
ZeroJudge Forum