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("去上班");
}
}
}
D:\liujiahao\zuoye>javac HelloWorld.java
HelloWorld.java:11: 错误: 有 'if', 但是没有 'else'
} else{
^
1 个错误
什么什么青年欢乐多
_潇潇暮雨
相关分类