Java 练习:编写 Java 程序,输入年份和月份,使用 switch 结构计算对应月份的天数。月份为 1、3、5、7、8、10、12 时,天数为 31 天。月份为 4、6、9、11 时,天数为 3

2022-05-08 11:13:52 浏览数 (1)

文章目录

  • 一、练习题目
  • 二、使用 switch 语句实现代码
  • 三、将代码改写回 if else 的选择结构

一、练习题目

编写 Java 程序,输入年份和月份,使用 switch 结构计算对应月份的天数。 月份为 1、3、5、7、8、10、12 时,天数为 31 天。 月份为 4、6、9、11 时,天数为 30 天。 月份为 2 时,若为闰年,天数为 29 天,否则,天数为 28 天。

要求实现程序如下图所示:

二、使用 switch 语句实现代码

我们使用 switch 语句实现代码如下:

代码语言:javascript复制
package rjxy2019_java_demo;

import java.util.Scanner;

public class SwitchWithDays {
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		System.out.println("Please enter a year:");
		int year = input.nextInt();
		System.out.println("Please enter a month:");
		int month = input.nextInt();
		int day = 0;
		boolean isLeapYear = ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0));
		switch(month) {
		case 1:
		case 3:
		case 5:
		case 7:
		case 8:
		case 10:
		case 12:day = 31;break;
		case 4:
		case 6:
		case 9:
		case 11:day = 30;break;
		case 2:if(isLeapYear == true) day = 29;
		else day = 28;break;
		default:System.out.println("Error:invalid input");
		System.exit(1);
		}
		System.out.println(year   "年"   month   "月一共"   day   "天");
	}
}

验证,当输入为 2009 年 2 月时,如下图所示:

说明System.exit(status)是在System类中定义的,调用这个方法可以终止程序。

参数status为 0 表示程序正常结束。一个非 0 的状态代码表示非正常结束。

例如,我们输入月份为 13 时,程序终止并输出报错信息,如下图所示:

三、将代码改写回 if else 的选择结构

我们将代码改写回 if else 的选择结构,代码如下:

代码语言:javascript复制
package rjxy2019_java_demo;

import java.util.Scanner;

public class IfElseWithDays {
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		System.out.println("Please enter a year:");
		int year = input.nextInt();
		System.out.println("Please enter a month:");
		int month = input.nextInt();
		int day = 0;
		boolean isLeapYear = ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0));
		if(month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month ==12) day = 31;
		else{
			if(month == 4 || month == 6 || month == 9 || month == 11) day = 30;
			else {
				if(month == 2) {
					if(isLeapYear == true) day = 29;
					else day = 28;
				}
				else {
					System.out.println("Error:invalid input");
					System.exit(1);
				}
			}
		}
		System.out.println(year   "年"   month   "月一共"   day   "天");
	}
}

输出结果无误,如下图所示:

0 人点赞