본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 10801번:카드게임 답

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
using namespace std;
int a[10], b[10], c[2];
int main() {
    for (int i = 0; i < 10; i++)
        cin >> a[i];
    for (int i = 0; i < 10; i++)
    {
        cin >> b[i];
        if (a[i] > b[i])
            c[0]++;
        else if (a[i] < b[i])
            c[1]++;
        else
        {
            c[0]++;
            c[1]++;
        }
    }
    if(c[0]>c[1]) { cout << "A" << '\n'; }
    else if (c[0]==c[1]) { cout << "D" << '\n'; }
    else { cout << "B" << '\n'; }
}
cs