if(year%4==0) { if(year%100==0) { }else System.out.println(year+"今年是闰年");} else {System.out.println(year+"今年不是闰年");}
if嵌套,一个是算是否能整除4,一个算是否能整除100。