AC解题
2024-03-02 13:56:40
发布于:广东
2阅读
0回复
0点赞
#include<bits/stdc++.h>//
using namespace std;
不用多说
bool is_leap(short year){
}
设置bool函数is_leap
if (year % 4==0){
if (year % 100==0){
if (year % 400==0){
return true;//返回true
}
return false;//返回false
}
return true;//返回true
}
return false;//返回false
判断year是否为闰年
int main() {
int n;
cin >> n;
if(is_leap(n)) cout << "Y" << endl;//判断
else cout << "N" << endl;
return 0;
}
主函数
成品来了
#include<bits/stdc++.h>
using namespace std;
bool is_leap(short year){//设置bool函数is_leap。
if (year % 4==0){
if (year % 100==0){
if (year % 400==0){
return true;//返回true
}
return false;//返回false
}
return true;//返回true
}
return false;//返回false
}
int main() {
int n;
cin >> n;
if(is_leap(n)) cout << "Y" << endl;//判断
else cout << "N" << endl;
return 0;
}
欢迎加入团队:进步的蜗牛
欢迎在我的题单做题
这里空空如也
有帮助,赞一个