https://www.acmicpc.net/problem/2490
#include
using namespace std;
int main() {
int line[4 * 3] = {0};
for (int i = 0; i < 12; i++) {
cin >> line[i];
if (i < 4 && i > 0) line[0] += line[i];
else if (i < 8 && i > 4) line[4] += line[i];
else if(i > 8) line[8] += line[i];
}
for (int j = 0; j < 3; j++) {
char result;
switch (line[j*4])
{
case 0: result = 'D'; break;
case 1: result = 'C'; break;
case 2: result = 'B'; break;
case 3: result = 'A'; break;
case 4: result = 'E'; break;
default: result = '?'; break;
}
cout << result << '\n';
}
}
'Programming > Algorithm' 카테고리의 다른 글
[C++] 백준 2747번 : 피보나치 수 (0) | 2019.02.09 |
---|---|
[C++] 백준 1427번 : 소트인사이드 (0) | 2019.02.08 |
[C++] 백준 1978번 : 소수 찾기 (0) | 2019.02.07 |
[C++] 백준 2750번 : 수 정렬하기 (0) | 2019.02.07 |
[C++] 백준 1475번 : 방 번호 (0) | 2019.02.07 |