#37762: 加油


yp11251094@yphs.tp.edu.tw (703-45)

學校 : 臺北市私立延平高級中學
編號 : 246062
來源 : [203.72.178.1]
最後登入時間 :
2024-05-02 14:20:41
a135. 12250 - Language Detection -- UVa12250 | From: [203.72.178.1] | 發表日期 : 2023-10-05 17:17

#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