新手请教个问题,求指教
package cho4;import
public class App4_4 {
/**
* @param args输入一个月份
* ,输出该月的天数
* @throws IOException
*/
public static void main(String[] args) throws IOException {
int month, days;
System.out.println("请输入月份");
month = (int) System.in.read();
switch (month) {
case (2):days = 28; break;
case (4): ;
case (6):;
case (9):;
case(11):;days = 30;break;
default:
days = 31;
}
System.out.println(month + "月有" + days + "天");
}
}
用eclipse打出上面的代码,输入5,输出的结果
请输入月份
5
53月有31天
我没有发现错误在哪里,但是怎么多了个3,其他的数字也有类似的错误。求指点