我有一個代碼寫在下面,這幾乎是一個if語句嵌套到另一個,因此,如果第一個if語句不正確,運行下面的代碼嵌套if語句不會運行。嵌套如果聲明
我知道這意味着你是不是能夠使第二if語句真實的,但我的問題很簡單:
是第二,如果因第一次說法正確,但忽略if語句是假的或者是第二個if語句完全錯誤嗎?
我的問題的代碼如下:
int temperature;
myWindow.clearOut();
temperature = Integer.parseInt(myWindow.readIn());
if (temperature >= 18) {
myWindow.writeOutLine(temperature + " is greater than or equal to 18");
if (temperature % 2 == 0)
myWindow.writeOutLine(temperature + " is an even number");
}
第二個if語句是薛定諤的貓 - 它既不是真也不是假,因爲它從來沒有被評估過。 –
@OriLentz謝謝:) –