题解
2024-04-22 12:59:38
发布于:广东
27阅读
0回复
0点赞
题目翻译:给出一个小于10000的数,判断是不是闰年
如果真的用字符串做的话很复杂,所以直接用int做
#include <iostream>
#include <cstdio>
using namespace std;
int a[100005];
int main(){
int n;
cin >> n;
if(n % 400 == 0 || n % 100 && n % 4 == 0) cout << "YES";
else cout << "NO";
return 0;
}
时间复杂度:
这里空空如也
有帮助,赞一个