Java实现从键盘分别输入年、月、日,判断这一天是当年的第几天

导读:本篇文章讲解 Java实现从键盘分别输入年、月、日,判断这一天是当年的第几天,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

import java.util.Scanner;
class Exer1 {
	public static void main(String[] args) {
		Scanner scan = new Scanner (System.in);

		System.out.print("年:");
		int year = scan.nextInt();
		System.out.print("月:");
		int month = scan.nextInt();
		System.out.print("日:");
		int day = scan.nextInt();
		
		int days = day;//如果将days 初值设置为0,则可以加上case1: days += day;

		//加前面几个月的满月天数
		switch(month){
			case 12:
				//前面11个月的总天数
				//days += 第11月的天数;
				days += 30;
			case 11:
				//前面10个月的总天数
				//days += 第10月的天数;
				days += 31;
			case 10:
				days += 30;//九月
			case 9:
				days += 31;//八月
			case 8:
				days += 31;//七月
			case 7:
				days += 30;//六月
			case 6:
				days += 31;//五月
			case 5:
				days += 30;//四月
			case 4:
				days += 31;//三月
			case 3:
				days += 28;//二月
				/*if(闰年){
					days++;
				}
				*/
				if(year % 4 ==0 && year % 100 != 0 || year%400==0){
					days++;
				}
			case 2:
				days += 31;//一月
		}
		System.out.println(year + "年" + month + "月" + day + "日是这一年的第" + days + "天");
	}	
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/83351.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!