返回列表 發帖

【022】if...else if...else 判斷式 (一)

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



  1.         public static void main(String[] args) {
  2.                
  3.                 int x, y;
  4.                
  5.                 Scanner s=new Scanner(System.in);
  6.                
  7.                 System.out.print("enter x value: ");
  8.                 x=s.nextInt();
  9.                 System.out.print("enter y value: ");
  10.                 y=s.nextInt();
  11.                
  12.                 if(x==y)
  13.                 {
  14.                         System.out.print("values are equal");
  15.                 }else if(x>y)
  16.                 {
  17.                         System.out.print("x is greater than y");
  18.                 }else
  19.                 {
  20.                         System.out.print("y is greater than x");
  21.                 }
  22.         }

  23. }
複製代碼

TOP

返回列表