码迷,mamicode.com
首页 > 编程语言 > 详细

Java经典编程题50道之十四

时间:2017-06-02 23:56:32      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:mon   class   第几天   编程   nbsp   cas   某月   string   int   

输入某年某月某日,判断这一天是这一年的第几天?

public class Example14 {
    public static void main(String[] args) {
        year(2017, 1, 1);
    }

    public static void year(int year, int month, int day) {
        int d = 0;
        int days = 0;
        if (year < 0 || month < 0 || month > 12 || day < 0 || day > 31) {
            System.out.println("输入错误,请重新输入!");
        }
        for (int i = 1; i < month; i++) {
            switch (i) {
            case 1:
            case 3:
            case 5:
            case 7:
            case 8:
            case 10:
            case 12:
                days = 31;
                break;
            case 4:
            case 6:
            case 9:
            case 11:
                days = 30;
                break;
            case 2:
                if ((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0)) {
                    days = 29;
                } else {
                    days = 28;
                }
                break;
            }
            d += days;
        }
        System.out.println(year + "年" + month + "月" + day + "日是" + year + "的第"
                + (d + day) + "天。");
    }
}

Java经典编程题50道之十四

标签:mon   class   第几天   编程   nbsp   cas   某月   string   int   

原文地址:http://www.cnblogs.com/qubo520/p/6935404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!