题解
2023-08-24 17:30:32
发布于:北京
29阅读
0回复
0点赞
注意闰年是☞除4==0和不可以整除100的,如果它可以整除400的话他就可以成为“闰年”
代码,他来喽
#include<iostream>
using namespace std;
// 完成闰年判定 is_leap 函数
bool is_leap(int year){
if(year%4==0 && year%100!=0 || year%400==0){//我把两个(也可以说是3个)条件放一起了哈!
return true;
}
else{
return false;
}
}
int main() {
int n;
cin >> n;
if(is_leap(n)) cout << "Y" << endl;
else cout << "N" << endl;
return 0;
}
这里空空如也
有帮助,赞一个