Hueestory

[2753] 윤년 (C++) 본문

PS(중단)/BOJ

[2753] 윤년 (C++)

히명 2024. 4. 25. 14:48
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int n; cin >> n;

	if ((n % 4 == 0 && n % 100 != 0) || n % 400 == 0)
		cout << "1" << endl;
	else
		cout << "0" << endl;

	return 0;
}

 

 

'PS(중단) > BOJ' 카테고리의 다른 글

[2751] 수 정렬하기 2 (C++)  (1) 2024.04.26
[2884] 알람 시계 (C++)  (0) 2024.04.26
[2741] N 찍기 (C++)  (0) 2024.04.25
[2739] 구구단 (C++)  (0) 2024.04.25
[2675] 문자열 반복 (C++)  (0) 2024.04.25
Comments