int x=2 int y=3 switchx? defult y++

int x=2 int y=3 switchx? defult y++case y++ break case y++ System.out.println(y=;+y)
2025-01-06 13:15:52
推荐回答(4个)
回答1:

二楼你的回答也不是完全正确,按照switch(y++) 这样写法是允许的,如果你把楼主的那个条件写成你那样的话就会造成输出结果不同!

回答2:

我的理解,不知道对不对
int x = 2,y=3;
switch(x)
{
default://首先执行
y++;
System.out.println("y1="+y);
case 3:
y++;
break;
case 4://没有break,且条件不符合,则继续到default结束
y++;
}

回答3:

666666666

回答4:

麻烦截图,这个语法都是错的,无法帮你解答。