#include <iostream>
using namespace std;
bool checkLeapYear(int year)
{
if ((year % 4 == 0 and year % 100 != 0) or (year % 4 ==0 and year % 400 == 0))
{
return true;
}
else
{
return false;
}
}
int main(void)
{
int result = -1; // 여부 확인
int year = 0; // 입력 연도
cin >> year;
if (year>=1 and year<=4000)
{
result = checkLeapYear(year);
cout << result << endl;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2839번 설탕 배달 (C++) (0) | 2022.06.14 |
---|---|
[백준] 2798번 블랙잭 (파이썬) (0) | 2022.06.14 |
[백준] 2751번 수 정렬하기 (파이썬) (0) | 2022.06.14 |
[백준] 2748번 피보나치 수 2 (파이썬) (0) | 2022.06.14 |
[백준] 2747번 피보나치 수 (파이썬) (0) | 2022.03.17 |