这个哪里错了啊
public class HelloWorld {
public static void main(String[] args) {
String today="周末";
String weather="晴朗";
if (today.equals("周末")){
if(weather.equals("晴朗")){
System.out.println("去室内游乐场");
}else{
System.out.println("去室外游乐场");
}
}else{
System.out.println("去上班");
}
}
}