본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 1476번:날짜 계산 답

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>
using namespace std;
int main() {
    int e, s, m, E = 1, S = 1, M = 1, total = 1;
    cin >> e >> s >> m;
    while (1)
    {
        if (E == e&&== s&&== m)
            break;
        E++;
        if (E == 16)
            E /= 16;
        S++;
        if (S == 29)
            S /= 29;
        M++;
        if (M == 20)
            M /= 20;
        total++;
    }
    cout << total;
}
cs