基础练习 闰年判断
程序员文章站
2024-02-27 14:53:45
...
PS: 注意400是或
#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
int y;
cin>>y;
if(y%4==0 && y%100!=0 || y%400==0)
cout<<"yes";
else
cout<<"no";
return 0;
}
上一篇: 老生常谈Python进阶之装饰器
下一篇: 字符串——字符串中数字子串的求和