zoukankan      html  css  js  c++  java
  • 判断闰年

    代码中使用1表示闰年,0表示不是闰年

    public class leap_years {

        public static void main(String[] args) {
            int year = Integer.parseInt(args[ 0]);
            int leap;
            if(year%4==0)
                {
                    if(year%100==0){
                        if(year%400==0)
                            leap=1;
                        else
                            leap=0;
                        }
                    else
                        leap=1;
                }
            else
                leap=0;
           
            if(leap==1)
                System.out.println(year+"年是闰年");
            else
                System.out.println(year+"年不是闰年");
        }
    }
    1、然后运行为配置

    image

    2、输入年份

    image

    3、然后点击下面的运行

    image

  • 相关阅读:
    1740-约数之和
    1653-南邮的面积
    1880-A. 偷吃可耻
    1429-全排列的输出
    1342-皇后控制问题
    1340-逆矩阵问题
    1319-n皇后问题
    1221-最少硬币问题
    1219-整数因子分解问题
    linux 命令小结
  • 原文地址:https://www.cnblogs.com/ywj2013/p/3690899.html
Copyright © 2011-2022 走看看