闰年366天, 平年365天
2月29天, 28天
if(year%4==0&&year%100!=0||year%400==0) System.out.println("是闰年");else System.out.println("平年");