判断是不是闰年
判断y是不是闰年
if(y % 4 == 0){
if(y % 100 == 0){
if(y % 400 == 0){
System.out.println("是闰年");
}else{
System.out.println("不是闰年");
}
}else{
System.out.println("不是闰年");
}
}else {
System.out.println("不是闰年");
}