<답안>
#include <iostream>
using namespace std;
int main() {
int year = 0;
cin>>year;
int result = 0;
//4의 배수이면서
if(year%4 == 0) {
//100의 배수가 아닐 때
if(year%100 != 0) {
result = 1;
}
//400의 배수일 때
if(year%400 == 0) {
result = 1;
}
}
cout<<result<<endl;
return 0;
}
<설명>
4의배수 : year%4 == 0
100의 배수 : year%100 == 0
400의 배수 : year%400 == 0
'백준 > 백준 단계별 문제풀이' 카테고리의 다른 글
백준 2884번 (C++) (0) | 2020.08.18 |
---|---|
백준 14681번 (C++) (0) | 2020.08.18 |
백준 9498번 (C++) (0) | 2020.08.17 |
백준 1330번 (C++) (0) | 2020.08.17 |
백준 2588번 (C++) (0) | 2020.08.17 |