본문 바로가기
프로그래밍/알고리즘

백준 2753 윤년

by ILove_NS_MoKa 2019. 8. 20.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
 
int main()
{
    int a = 0;
    std::cin >> a;
    if (1 <= a && a <= 4000)
    {
        if (a % 4 == 0  && (a % 100 != 0|| (a % 400 == 0))
        {
            std::cout << "1\n";
        }
        else
        {
            std::cout << "0\n";
        }
    }
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

'프로그래밍 > 알고리즘' 카테고리의 다른 글

백준 10817 세수  (0) 2019.08.21
버블소팅  (0) 2019.08.21
백준 2884 알람 시계  (0) 2019.08.20
백준 9498 시험성적  (0) 2019.08.20
백준 1008  (0) 2018.07.23