Board logo

標題: if...else if...else 判斷式 (一) [打印本頁]

作者: tonyh    時間: 2019-7-2 10:57     標題: if...else if...else 判斷式 (一)

本帖最後由 tonyh 於 2019-7-2 11:20 編輯

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





  二擇一
  if( )
  {

  }
  else
  {

  }

  多擇一
  if( )
  {

  }
  else if( )
  {

  }
  else if( )
  {

  }
  else
  {

  }

  多擇多 / 多擇無
  if( )
  {
         
  }
  if( )
  {

  }
  if( )
  {

  }
  if( )
  {
         
  }


本帖隱藏的內容需要回復才可以瀏覽

作者: 陳致翰    時間: 2019-7-2 11:07

  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 a,b;
  8.         System.out.print("a: ");
  9.         a=Integer.parseInt(c.readLine());
  10.         System.out.print("b: ");
  11.         b=Integer.parseInt(c.readLine());
  12.         if(a>b)
  13.             System.out.print("a>b");
  14.         else if(a<b)
  15.             System.out.print("a<b");
  16.         else
  17.             System.out.print("a=b");
  18.     }
  19. }
複製代碼

作者: 蔡杰恩    時間: 2019-7-2 11:08

  1. import java.io.Console;
  2. public class Ch12
  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.print("x>y");
  14.         else if(x<y)
  15.             System.out.print("x<y");
  16.         else
  17.             System.out.print("x=y");


  18.     }

  19. }
複製代碼

作者: 古蕾娜    時間: 2019-7-2 11:08

  1. import java.io.Console;
  2. public class Ch10
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       Console c=System.console();
  7.       int x,y;
  8.       System.out.print("Enter the value of x: ");
  9.        x=Integer.parseInt(c.readLine());
  10.       System.out.print("Enter the value of 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. }
複製代碼

作者: 葉子于    時間: 2019-7-2 11:08

  1. import java.io.Console;
  2. public class ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         float x,y;
  7.         Console c=System.console();
  8.         x=Float.parseFloat(c.readLine("請輸入x:"));
  9.         y=Float.parseFloat(c.readLine("請輸入y:"));
  10.         if(x>y)
  11.             System.out.println("x>y");
  12.         else if(x<y)
  13.             System.out.println("x<y");
  14.         else
  15.             System.out.println("x=y");

  16.     }
  17. }
複製代碼

作者: 李承洋    時間: 2019-7-2 11:08

  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. }
複製代碼

作者: 林宥杰    時間: 2019-7-2 11:09

  1. import java.io.Console;
  2. public class Ch08
  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. }
複製代碼

作者: 李佳諭    時間: 2019-7-2 11:09

  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. }
複製代碼

作者: 李從赫    時間: 2019-7-2 11:10

  1. import java.io.Console;
  2. public class Ch08
  3. {
  4.    public static void main(String args[])
  5.    {
  6.        int x,y;
  7.        Console c=System.console();
  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. }
複製代碼

作者: 陳柏銓    時間: 2019-7-2 11:10

  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. }
複製代碼

作者: 劉欽文    時間: 2019-7-2 11:10

  1. import java.io.Console;
  2. public class Ch08
  3. {
  4.    public static void main(String args[])
  5.    {
  6.        int x,y;
  7.        Console c=System.console();
  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. }
複製代碼

作者: 古昇暘    時間: 2019-7-2 11:11

  1. import java.io.Console;
  2. public class Ch011
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int x, y;
  8.         System.out.println("Please enter x value: ");
  9.         x=Integer.parseInt(c.readLine());
  10.         System.out.println("Please enter y value: ");
  11.         y=Integer.parseInt(c.readLine());
  12.         if(x>y)
  13.         {
  14.             System.out.println("x>y");

  15.         }else if(x<y)
  16.         {
  17.             System.out.println("x<y");
  18.         }
  19.         else
  20.         {
  21.             System.out.println("x=y");
  22.         }
  23.     }
  24. }
複製代碼

作者: 宋威廷    時間: 2019-7-2 11:11

  1. import java.io.Console;
  2. public class CH08

  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int x,y;
  8.         x=Integer.parseInt(c.readLine("請輸入x的值:"));
  9.         y=Integer.parseInt(c.readLine("請輸入y的值:"));
  10.         if(x>y)
  11.         {
  12.             System.out.println("x>y");
  13.         }
  14.         else if(x<y)
  15.         {
  16.             System.out.println("x<y");
  17.         }
  18.         else
  19.         {
  20.             System.out.println("x=y");
  21.         }


  22.     }
  23. }
複製代碼

作者: 賴駿榮    時間: 2019-7-2 11:11

  1. import java.io.Console;
  2. public class ch07
  3. {
  4.     public static void main(String args[])
  5.     {
  6.      int x,y;
  7.      Console c=System.console();
  8.      x=Integer.parseInt(c.readLine("輸入x: "));
  9.      y=Integer.parseInt(c.readLine("輸入y: "));
  10.      if (x>=y)
  11.          System.out.println("x大於y");
  12.      if (x<=y)
  13.          System.out.println("x小於y");
  14.      if (x==y)
  15.          System.out.println("x等於y");
  16.     }
  17. }
複製代碼
回復 1# tonyh
作者: 謝宗佑    時間: 2019-7-2 11:12

  1. import java.io.Console;
  2. public class Ch10
  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. }
複製代碼

作者: 李沛儒    時間: 2019-7-2 11:15

  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.println("請問x,y的值為何?") ;
  9.          System.out.print("x:") ;
  10.          x=Integer.parseInt(c.readLine());
  11.          System.out.print("y:") ;
  12.          y=Integer.parseInt(c.readLine());
  13.          if(x>y)
  14.              System.out.println(" x>y ");
  15.          else if(x<y)
  16.              System.out.println("x<y");
  17.          else
  18.              System.out.println(" x=y ");
  19.     }
  20. }
複製代碼

作者: 蔡杰希    時間: 2019-7-2 11:15

  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. }
複製代碼

作者: 吳庭慈    時間: 2019-7-2 11:15

  1. import java.io.Console;
  2. public class Ch10
  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. }
複製代碼

作者: 張啟廣    時間: 2019-7-2 11:15

本帖最後由 張啟廣 於 2019-7-2 11:18 編輯
  1. import java.io.Console;
  2. public class Ch10
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int x, y;
  8.          x=Integer.parseInt(c.readLine("請輸入x值: "));
  9.          y=Integer.parseInt(c.readLine("請輸入y值: "));
  10.          if(x>y)
  11.              System.out.println("x>y");
  12.          else if(x<y)
  13.              System.out.println("x<y");
  14.          else
  15.              System.out.println("x=y");
  16.     }
  17. }
複製代碼

作者: 王煦    時間: 2019-7-2 11:18

  1. import java.io.Console;
  2. public class Ch10
  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. }
複製代碼

作者: 陳智鈞    時間: 2019-7-2 11:18

  1. import java.io.Console;
  2. public class Ch10
  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2