真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java四季代碼 javagui代碼

讓大家一個(gè)java非常簡單的編程:根據(jù)輸入1到12之間的數(shù)字,判斷是春夏秋冬哪個(gè)季節(jié)

你好,按照你的要求代碼如下,給出了注釋,可以直接運(yùn)行

創(chuàng)新互聯(lián)公司主營懷仁網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,手機(jī)APP定制開發(fā),懷仁h5微信小程序搭建,懷仁網(wǎng)站營銷推廣歡迎懷仁等地區(qū)企業(yè)咨詢

public class Example10_3 {

public static void main(String args[]) {

// 從1月打到12月

for (int i = 1; i = 12; i++) {

System.out.println(getSeason(i));

}

}

// 根據(jù)月份獲得季節(jié)

private static String getSeason(int month) {

switch ((month - 1) / 3) {

case 0:

return "春";

case 1:

return "夏";

case 2:

return "秋";

case 3:

return "冬";

default:

return "錯(cuò)誤";

}

}

}

JAVA編寫,1. 分別使用if-else-if語句和switch語句編程,確定某一月在哪個(gè)季節(jié)。

話不多說,直接上代碼。

Scanner sc = new Scanner(System.in);

System.out.print("請輸入月份 : ");

String monthStr = sc.next();

int month = Integer.parseInt(monthStr);

if (month = 3 month = 5) {

System.out.println("春季");

} else if (month = 6 month = 8) {

System.out.println("夏季");

} else if (month = 9 month = 11) {

System.out.println("秋季");

} else if (month == 12 || month = 2) {

System.out.println("冬季");

} else {

System.out.println("沒有該月份 " + month);

}

java編程,輸入月份判斷季節(jié)

代碼喝注釋如下:

public?static?void?main(String[]?args)?{??System.out.print("Please?input?the?month?to?check:");??int?month?=?new?Scanner(System.in).nextInt();//月份//月份不在1~12的情況,提醒輸入錯(cuò)誤??if?(month?=?0?||?month??12)?{???System.out.println("Error!?month?must?be?between?1?and?12!");??}?

//1-3月是春天

else?if?(month?=?3)?{???System.out.println("Month?"?+?month?+?"?is?in?Spring!");??}?

//4-6月是夏天

else?if?(month?=?6)?{???System.out.println("Month?"?+?month?+?"?is?in?Summer!");??}?

//7-9月是秋天

else?if?(month?=?9)?{???System.out.println("Month?"?+?month?+?"?is?in?Autumn!");??}?

//10-12月是冬天

else?{???System.out.println("Month?"?+?month?+?"?is?in?Winter!");??}?}


標(biāo)題名稱:java四季代碼 javagui代碼
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/dogdggo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部