java 語言 if else語句的使用方法
阿新 • • 發佈:2019-01-26
if else語句的結果如下
if(條件1){
//程式碼塊1
}else if(條件2){
//程式碼塊2
}else{//程式碼塊3}
if else語句使用方法:如果條件1是true則執行 程式碼塊1,如果條件2是true則執行程式碼塊2,否則執行程式碼塊3。下面是例子:
public class test { public static void main(String[] args){ Boolean test =false; if(test ==false){ System.out.println("1The test is ture"); }else { System.out.println("1The test is false"); } test =true; if(test ==false){ System.out.println("2The test is ture"); }else { System.out.println("2The test is false"); } }
例子的結果是:
1The test is ture
2The test is false