<code class="language-java">package program_basics; public class Condition_statement { public static void main(String[] args) { // TODO Auto-generated method stub //------------------------------------------------- //if only /* int i=25; int j=50; if (i<j) System.out.println("i is lesser"); */ //----------------------------------------------- //if else only /* int i=25; int j=50; if (i>j) { System.out.println("i is greater"); } else { System.out.println("i is lesser"); } */ //---------------------------------------------------- //else if only /* int i=35; int j=50; if (i>j) { System.out.println("i is greater"); } else if(j<i) { System.out.println("j is lesser"); } else { System.out.println("i and j are equal"); } */ } }</code>
此修訂的代碼維護原始功能,同時提高了可讀性並刪除不必要的評論。 該圖像保持其原始位置和格式。 現在,代碼示例在評論中更簡潔,重點是每個條件語句類型的核心邏輯。
以上是條件語句的示例,如果,如果其他,則的詳細內容。更多資訊請關注PHP中文網其他相關文章!