1. 程式人生 > >已知某年某月,請輸出這個月共有多少天(switch語句)

已知某年某月,請輸出這個月共有多少天(switch語句)

package com.zhidi;


public class Lianxi08 {


public static void main(String[] args) {
// 已知某年某月,請輸出這個月共有多少天。(switch語句)

int year = 2012;
int month = 2;

switch(month){
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
System.out.println(year+"年"+month+"月一共有31天");
break;
case 4:
case 6:
case 9:
case 11:
System.out.println(year+"年"+month+"月一共有30天");
break;
case 2:
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("輸入錯誤");
}


}


}