正经题解|判闰年
2024-04-23 13:34:10
发布于:浙江
64阅读
0回复
0点赞
题目分析
闰年的定义为:公历年份中能够被4整除但不能被100整除,或者能够被400整除的年份
AC代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n ;
if(n % 4 == 0 && n % 100 != 0 || n % 400 == 0)
{
cout << "YES" << endl;
}else{
cout << "NO" << endl;
}
return 0;
}
复杂度分析
这里空空如也
有帮助,赞一个