#28010: CPP


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
a135. 12250 - Language Detection -- UVa12250 | From: [219.85.43.159] | 發表日期 : 2021-11-10 00:00

#include <iostream>
using namespace std;

int main(){
int n=0;
string s, ans;
while (cin >> s){
if (s=="#"){
break;
}
n++;
if (s=="HELLO"){
ans="ENGLISH";
}
else if (s=="HOLA"){
ans="SPANISH";
}
else if (s=="HALLO"){
ans="GERMAN";
}
else if (s=="BONJOUR"){
ans="FRENCH";
}
else if (s=="CIAO"){
ans="ITALIAN";
}
else if (s=="ZDRAVSTVUJTE"){
ans="RUSSIAN";
}
else {
ans="UNKNOWN";
}
cout <<"Case "<< n <<": "<< ans <<endl;
}
}
 
ZeroJudge Forum