You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
201 B

#include<iostream>
using namespace std;
int main() {
int year;
cin>>year;
if((year%4==0 && year%100!=0)||year%400==0)
cout<<year<<"是闰年"<<endl;
else cout<<year<<"不是闰年"<<endl;
return 0;
}