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

举报
白鹿第一帅 发表于 2021/02/08 15:38:23 2021/02/08
【摘要】 编写 Java 程序,输入年份和月份,使用 switch 结构计算对应月份的天数。 月份为 1、3、5、7、8、10、12 时,天数为 31 天。 月份为 4、6、9、11 时,天数为 30 天。 月份为 2 时,若为闰年,天数为 29 天,否则,天数为 28 天。

有题如下:

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

实现如下程序:
在这里插入图片描述

一、使用 switch 语句实现代码

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 的选择结构

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 + "天");
	}
}

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

在这里插入图片描述


在这里插入图片描述


我是白鹿,一个不懈奋斗的程序猿。望本文能对你有所裨益,欢迎大家的一键三连!若有其他问题、建议或者补充可以留言在文章下方,感谢大家的支持!

【版权声明】本文为华为云社区用户原创内容,未经允许不得转载,如需转载请自行联系原作者进行授权。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。