亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么編寫Java程序使用switch結構計算對應月份的天數

發布時間:2021-10-18 11:50:46 來源:億速云 閱讀:253 作者:iii 欄目:編程語言

本篇內容主要講解“怎么編寫Java程序使用switch結構計算對應月份的天數”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么編寫Java程序使用switch結構計算對應月份的天數”吧!

有題如下:

編寫 Java 程序,輸入年份和月份,使用 switch 結構計算對應月份的天數。
月份為 1、3、5、7、8、10、12 時,天數為 31 天。
月份為 4、6、9、11 時,天數為 30 天。
月份為 2 時,若為閏年,天數為 29 天,否則,天數為 28 天。

實現如下程序:
怎么編寫Java程序使用switch結構計算對應月份的天數

一、使用 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 月時:

怎么編寫Java程序使用switch結構計算對應月份的天數

二、將代碼改寫回 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 + "天");}}

到此,相信大家對“怎么編寫Java程序使用switch結構計算對應月份的天數”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊吾县| 大姚县| 胶南市| 济阳县| 昌图县| 慈利县| 布尔津县| 电白县| 新营市| 长泰县| 舒兰市| 山西省| 宁蒗| 钟祥市| 明星| 卫辉市| 志丹县| 永安市| 商城县| 读书| 英山县| 自贡市| 紫阳县| 藁城市| 巴林左旗| 宜宾市| 河源市| 海口市| 普安县| 兴义市| 普兰县| 威远县| 贵溪市| 五大连池市| 蚌埠市| 休宁县| 涟水县| 夏河县| 资中县| 花莲市| 潮安县|