[BOJ/C++] 2753 윤년

mani·2023년 5월 18일
0

baekjoon_step

목록 보기
16/73

윤년을 판별하는 문제

#include <iostream>

using namespace std;

int main() {
	int a;
	cin >> a;
	if ((a % 4 == 0 && a % 100 != 0) || (a % 400 == 0))
		cout << "1";
	else
		cout << "0";
	return 0;
}
profile
log

0개의 댓글