📄 exswitch2.java
字号:
//c3:ExSwitch2.java
// author:ZhangHongbin
//This program is protected by copyright laws.
//Test switch sentence.
public class ExSwitch2
{
public static void main(String[] args)
{
byte choice=2;
switch(choice)
{
case 1:
System.out.println("choice=1");
break;
case 2:
System.out.println("choice=2");
case 3:
System.out.println("choice=3");
default:
System.out.println("choice=default");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -