AC代码 | 很简单,一做就会
2024-12-23 13:49:46
发布于:广西
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
bool is_leap(int n)
{
if(n % 400 == 0 || n % 4 == 0 && n % 100 != 0)
{
return true;
}
return false;
}
int main()
{
int n;
cin >> n;
if(is_leap(n) == true)
{
cout << "Y" << endl;
}else
{
cout << "N" << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个