Run ID:11814
提交时间:2021-05-17 18:42:59
#include <bits/stdc++.h> using namespace std; int main() { int y; cin >> y; if(y%4==0 && y%100!=0 || y%400==0) cout << "leap year"; else cout << "not leap year"; return 0; }