Run ID:12302
提交时间:2021-05-20 16:07:48
#include <bits/stdc++.h> using namespace std; int main() { int c; cin>>c; if(c%4==0&&c%100!=0||c%400==0) cout<<"leap year"<<endl; else cout<<"not leap year"<<endl; return 0; }