返回列表 發帖

if...else if...else 判斷式 (一)

本帖最後由 鄭繼威 於 2023-5-3 21:01 編輯

多向判斷式語法
if (條件式一) {
   程式區塊一;
}
else if(條件式二){
   程式區塊二;
}
else if(條件式三){
   程式區塊三;
}
.........
else{
   else的程式區塊;
}

[補充]
if...  只能有一個(放在第一個)
else if...  可以很多個(放在中間)
else  只能有一個(放在最後一個)



運用 if...else if...else 判斷式, 比較 x 與 y 的大小關係.



  1. import java.io.Console;
  2. public class Ch09
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int x,y;
  8.          System.out.print("輸入x: ");
  9.          x=Integer.parseInt(c.readLine());
  10.          System.out.print("輸入y: ");
  11.          y=Integer.parseInt(c.readLine());
  12.          if(x>y)
  13.              System.out.println("x>y");
  14.          else if(x<y)
  15.              System.out.println("x<y");
  16.          else
  17.              System.out.println("x=y");
  18.     }
  19. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表