Java实现 打鱼还是筛网

问题描述:
中国有句俗语叫做“三天打鱼两天晒网”。假如某人从1999年9月9日起开始“三天打鱼两天晒网”,问这个人在以后的任意一天中是“打鱼”还是“晒网”。

问题分析:
根据题意可以分为三个步骤
a. 计算从1999年9月9日开始至指定日期共有多少天
b. 由于“打鱼”和“晒网”的周期为5天,所以将计算出的天数用5去除
c. 根据余数判断“打鱼”还是“晒网”,若余数为1、2、3,则他是在“打鱼”否则是在“晒网”

在这三步中,关键是第一步,要判断经历的年份中是否有闰年,闰年二月29天,平年二月28天。分别定义不同的方法,完成不同的功能块。

import java.util.Scanner;

public class Test03 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println("请输入从1999年9月9日开始后的任意一年:");
		int year = sc.nextInt();
		System.out.println("月份:");
		int month = sc.nextInt();
		System.err.println("第几天:");
		int day = sc.nextInt();
		// 从1999年9月9日开始
		int initialYear = 1999;
		int initialMonth = 9;
		int initialDay = 9;
		// 如果小于初始值
		if (year <= initialYear) {
			if (month <= 9) {
				if (day < initialDay) {
					System.out.println("你输入的日期有误");
					return;
				}
			}
		}
		// 1999年1~9月的天数
		int initialDate = (date(initialYear, initialMonth) + initialDay);
		// System.out.println(initialDate);
		int days = 0;
		// 每一年的天数
		for (int i = initialYear; i < year; i++) {
			if (vintage(i)) {
				days += 366;
			} else {
				days += 365;
			}
		}
		// 最后一年天数
		days += date(year, month) + day;
		// 减去开始的天数
		days = days - initialDate;
		// System.out.println(days);
		if (days % 5 <= 3) {
			System.out.println("打鱼");
		} else {
			System.out.println("晒网");
		}
	}

	// 是否是闰年
	public static boolean vintage(int year) {
		if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
			return true;
		return false;
	}

	// 该年天数
	public static int date(int year, int month) {
		int day = 0;
		switch (month) {
		case 12:
			day += 30;
		case 11:
			day += 31;
		case 10:
			day += 30;
		case 9:
			day += 31;
		case 8:
			day += 31;
		case 7:
			day += 30;
		case 6:
			day += 31;
		case 5:
			day += 30;
		case 4:
			day += 31;
		case 3:
			day += 28;
		case 2:
			day += 31;
		}
		if (vintage(year) && month > 2)
			return day + 1;
		return day;
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值