///////SwitchTest.java
public class SwitchTest{
public static void main(String[] args){
System.out.println("value = " + switchIt(4));
}
public static int switchIt(int x){
int j = 1;
switch(x){
case 1:
    j++;
case 2:
j++;
case 3:
j++;  
case 4:
j++;
case 5:
   j++;
default:
  j++;
}
System.out.println("x = " +x+ " and j = " +j);
return j+x;
}
}
///   执行结果是:x=4 and j =4
                  value = 8
////这是为什么呢?   我的理解 x = 4 , 调用 case 4: 后面的语句 j++;  使j = 2,
    输出: x=4 and j =2
           value = 6
为什么不是我想要的输出结果呢,  哪儿有逻辑错误吗?