public class Main {
public static void main(String[] args) {
int aNumber = 3;
if (aNumber >= 0)
if (aNumber == 0)
System.out.println("first string");
else
System.out.println("second string");
System.out.println("third string");
}
}
输出
second string
third string
我希望
third string
因为System.out.println("second string");
的其他内容应该是if (aNumber == 0)
。
我的问题是
if
else
' else
是否允许在外if
else
- if
语句之间撰写语句
if(condition) {
if(anotherCondition) {
someCode();
}
//execute code here
} else {
anotherCode();
}