[백준] #2753 윤년

kkily·2021년 6월 25일
0

[알고리즘]

목록 보기
12/102

문제링크

#include <iostream>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int a;
    cin >> a;
    if (a % 4 == 0 && (a % 100 != 0 || a % 400 == 0))
    {
        cout << 1;
    }
    else
    {
        cout << 0;
    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글

관련 채용 정보