色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

java 判斷閏年和月份

錢浩然1年前7瀏覽0評論

在Java中,我們可以用簡單的代碼來判斷一個年份是否是閏年,并且還可以根據(jù)月份來確定有多少天。

public class YearAndMonth {
public static void main(String[] args) {
int year = 2020;
int month = 2;
// 判斷是否是閏年
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
System.out.println(year + "年是閏年!");
} else {
System.out.println(year + "年不是閏年!");
}
// 根據(jù)月份確定天數(shù)
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
System.out.println(month + "月有31天");
break;
case 4:
case 6:
case 9:
case 11:
System.out.println(month + "月有30天");
break;
case 2:
// 如果是閏年,2月份有29天
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
System.out.println(year + "年的" + month + "月有29天");
} else {
System.out.println(year + "年的" + month + "月有28天");
}
break;
default:
System.out.println("輸入的月份有誤!");
}
}
}

以上代碼通過使用if和switch語句,實現(xiàn)了對一個年份和月份的判斷,可以方便地獲取到這些信息,為后續(xù)開發(fā)提供了基礎(chǔ)。