解
2024-04-30 19:34:44
发布于:浙江
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
bool is_leap(int n)
{
if(n%4==0)
{
if(n%100==0)
{
if(n%400==0)
return 1;
return 0;
}
return 1;
}
return 0;
}
int main() {
int n;
cin >> n;
if(is_leap(n)) cout << "Y" << endl;
else cout << "N" << endl;
这里空空如也
有帮助,赞一个