#include<iostream> u
2022-11-27 17:07:14
发布于:北京
41阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int year;
cin>>year;
if(year%4 == 0 && year%100 != 0 || year%400 == 0){
cout<<"Y"<<endl;
}
else{
cout<<"N"<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个