判断是不是闰年

判断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("不是闰年");
        }
posted on 2021-12-21 11:11  小白成长变大神  阅读(60)  评论(0编辑  收藏  举报