题解 c++
2023-08-08 11:21:28
发布于:浙江
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin>>n;
if(n%100==0) //整百年判断
{
if(n%400==0)
cout<<"Y";
else
cout<<"N";
}
else
{
if(n%4==0)
cout<<"Y";
else
cout<<"N";
}
return 0;
}
这里空空如也
有帮助,赞一个