Loading

摘要: 闰年判断 #include<bits/stdc++.h> using namespace std; //const int N=10001; int n; int main() { cin>>n; if(n%400==0||(n%4==0&&n%100!=0)) cout<<"yes"<<endl; 阅读全文
posted @ 2021-11-16 09:06 longwind7 阅读(23) 评论(0) 推荐(0)