<code class="language-java">package Javaifelse; public class Third { public static void main(String[] args) { int a = 10; int b = 59; int c = 120; if (a > b) { System.out.println("value a > b"); } else if (b < c) { System.out.println("value b < c"); } else { System.out.println("No condition met"); } } }</code>
原始代碼具有語法錯誤。 上面的校正代碼正確使用鏈條件語句。 如果else if
為false,則程序檢查是否a > b
。如果兩個都是錯誤的,則b < c
>
以上是如果還有其他的詳細內容。更多資訊請關注PHP中文網其他相關文章!