三目运算符 题解
2023-10-29 19:33:18
发布于:北京
12阅读
0回复
0点赞
#include<iostream>
using namespace std;
// 完成闰年判定 is_leap 函数
bool is_leap(int year){
return year%400==0||year%4==0&&year%100!=0 ? true:false;
}
int main() {
int n;
cin >> n;
if(is_leap(n)) cout << "Y" << endl;
else cout << "N" << endl;
return 0;
}
这里空空如也
有帮助,赞一个