Thứ Ba, 8 tháng 1, 2019

UVa 12250 - Language Detection (LA 4995, KualaLumpur10, if-else check)

Link: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=244&page=show_problem&problem=3402
Sol:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
char word[80];
int i = 1;
while (scanf("%s", &word) != EOF) {
if (strcmp(word, "#") == 0) {
break;
}
else if (strcmp(word, "HOLA") == 0) {
printf("Case %d: SPANISH\n", i);
}
else if (strcmp(word, "HELLO") == 0) {
printf("Case %d: ENGLISH\n", i);
}
else if (strcmp(word, "HALLO") == 0) {
printf("Case %d: GERMAN\n", i);
}
else if (strcmp(word, "BONJOUR") == 0) {
printf("Case %d: FRENCH\n", i);
}
else if (strcmp(word, "CIAO") == 0) {
printf("Case %d: ITALIAN\n", i);
}
else if (strcmp(word, "ZDRAVSTVUJTE") == 0) {
printf("Case %d: RUSSIAN\n", i);
}
else {
printf("Case %d: UNKNOWN\n", i);
}
++i;
}
return 0;
}

Không có nhận xét nào:

Đăng nhận xét

Bài G - Educatioal Round 62

Đề bài: Bạn được cho 1 đồ thị vô hướng đặc biệt. Nó bao gồm $2n$ đỉnh được đánh số từ 1 đến 2n. Dưới đây là một số đặc tính của đồ thị: + ...