返回列表 發帖

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

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





  二擇一
  if( )
  {

  }
  else
  {

  }

  多擇一
  if( )
  {

  }
  else if( )
  {

  }
  else if( )
  {

  }
  else
  {

  }

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

  }
  if( )
  {

  }
  if( )
  {
         
  }


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

  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.         x=Integer.parseInt(c.readLine("Enter X: "));
  9.         y=Integer.parseInt(c.readLine("Enter 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. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int x=Integer.parseInt(c.readline("請輸入x: "));
  8.          int y=Integer.parseInt(c.readline("請輸入y: "));
  9.          if(x>y)
  10.               System.out.println("x大於y");
  11.          else if(x<y)
  12.               System.out.println("x小於y");
  13.          else
  14.               System.out.println("兩者相等");
  15.    }
  16. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch05
  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("兩數相等");
  16.      }
  17. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     Console c=System.console();
  7.     float a=Float.parseFloat(c.readLine("請輸入a值:"));
  8.     float b=Float.parseFloat(c.readLine("請輸入b值:"));
  9.     if (a>b)
  10.     System.out.print("a大於b");
  11.     else if (a<b)
  12.     System.out.print("a小於b");
  13.     else
  14.     System.out.print("a等於b");
  15.   }
  16. }
複製代碼

TOP

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

TOP

  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=Integer.parseInt(c.readLine("請輸入x的值"));
  8.          int y=Integer.parseInt(c.readLine("請輸入y的值"));
  9.          if(x>y)
  10.              System.out.println("x大於y");
  11.          else if(x<y)
  12.              System.out.println("x小於y");
  13.          else
  14.              System.out.println("x等於y");
  15.     }
  16. }
複製代碼

TOP

  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.         
  11.         if(x>y)
  12.             System.out.println("x比較大");
  13.         else if(x<y)
  14.             System.out.println("y比較大");
  15.         else
  16.             System.out.println("兩者相等");
  17.     }
  18. }
複製代碼

TOP

  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

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

TOP

返回列表