class Main {
public static void main(String[] args) {
//JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
boolean bool = true;
int choose = 1;
System.out.println("111");
do{
System.out.println("11111");
switch(1){
case 1:
System.out.println("1明细");
break;
case 2:
System.out.println("2明细");
break;
}
}while(bool);
}
}