基础Java练习07:闰年判断

  • 什么是闰年?能够被4整除或者被100整除,但是不能被400整除的年就是把闰年。

编写程序,判断闰年

/**
 * 功能:判断闰年
 * 作者:孤梦
 * 日期:2022年03月24日
 */
public class Example05 {
    
    
    public static void main(String[] args) {
    
    
        // 声明部分
        int year;
        String result;
        Scanner sc = new Scanner(System.in);

        // 输入部分
        System.out.print("year = ");
        year =sc.nextInt();

        // 处理部分
        if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
    
    
            result = year + "是闰年";
        } else {
    
    
            result =  year + "是平年";
        }

        // 输出部分
        System.out.println(result);
    }
}

运行程序,查看结果

在这里插入图片描述

  • 查看第二种
    在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_62491692/article/details/123717443