慕虎7806482
2019-07-02 14:39
public class HelloWorld { public static void main(String[] args) { char today='日'; switch(today) { case '一': case '三': case '五': String food="包子"; break; case '二': case '四': case '六': String food="油条"; break; default: String food="主席套餐"; } System.out.print("吃"+food); } }
public class HelloWorld {
public static void main(String[] args) {
char today='日';
String food="";
switch(today) {
case '一':
case '三':
case '五':
food="包子" ;
break;
case '二':
case '四':
case '六':
food="油条";
break;
default:
food="主席套餐";
}
System.out.print("吃"+food);
}
}
char today='三';
switch(today){
case '一':
case '三':
case '五':
System.out.println("包子");
break;
case '二':
case '四':
case '六':
System.out.println("油条");
break;
default:
System.out.println("吃主席套餐");
}
Java入门第一季(IDEA工具)升级版
1165175 学习 · 17581 问题
相似问题