class Main {
public static void main(String[] args) {
//JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
int weekofmonth=2;
int day=7;
switch(day){
case 1:
System.out.println("法国大餐");
break;
case 2:
case 4:
System.out.println("满汉全席");
break;
case 7:
if(weekofmonth==1){
System.out.println("苹果");
}else{
System.out.println("香蕉");
}
break;
}
}
}