Run ID:87442
提交时间:2024-08-10 11:17:32
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if((n%4==0&&n%100!=0)||(n%400==0)) cout<<"leap year"; else cout<<"not leap year"; return 0; }