[BaekJoon] 백준 2753번 윤년
문제: https://www.acmicpc.net/problem/2753
내코드
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
cin.tie(0);
int year;
cin >> year;
if (year % 4 == 0 && year % 100 != 0) {
cout << 1;
return 0;
}
if (year % 400 == 0) {
cout << 1;
return 0;
}
cout << 0;
return 0;
}
참고
728x90
반응형
'CS > Algorithm 문제' 카테고리의 다른 글
[BaekJoon] 백준 5427번 불 (0) | 2020.04.05 |
---|---|
[BaekJoon] 백준 2576번 홀수 (0) | 2020.03.31 |
[BaekJoon] 백준 2562번 최댓값 (0) | 2020.03.27 |
[BaekJoon] 백준 2752번 세수정렬 (0) | 2020.03.22 |
[BaekJoon] 백준 2573번 빙산 (0) | 2020.03.22 |