返回列表 發帖

if...else 判斷式





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

  1. import java.io.Console;
  2. public class QWER
  3. {
  4.      public static void main(String args[])
  5.      {
  6.            int x;
  7.            Console c=System.console();
  8.            x=Integer.parseInt(c.readLine("請輸入你的年紀: "));
  9.            if(x>=18)
  10.            {
  11.              System.out.println("恭喜你!!!");
  12.              System.out.print("可以考駕照了");
  13.            }
  14.            else
  15.            {
  16.              System.out.println("未滿18,還要再"+(18-x)+"年");
  17.            }
  18.      }
  19. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. import java.io.Console;
  2. public class Ch19
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int age;
  7.          Console c=System.console();
  8.          age=Integer.parseInt(c.readLine("請輸入你的年紀:"));
  9.          if(age>=18)
  10.          {
  11.          System.out.print("恭喜!你可以考駕照了!");
  12.          }
  13.          else
  14.          {
  15.          System.out.print("未滿18,還得再等等喔!");
  16.          }
  17.     }
  18. }
複製代碼
張閎鈞OuO

TOP

  1. import java.io.Console;
  2. public class Ch03
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int a;
  7.          Console s =System.console();

  8.          a=Integer.parseInt(s.readLine("請輸入年齡: "));

  9.          if(a>=18){
  10.            System.out.println("可以考駕照了");
  11.          }
  12.          else{
  13.              System.out.println("再等等");
  14.          }



  15.     }
  16. }
複製代碼

TOP

  1.     import java.io.Console  ;
  2.     public class nsez
  3.     {
  4.        public static void main(String args[])
  5.        {  
  6.          int a,b,d;
  7.             Console c=System.console();
  8.             a=Integer.parseInt(c.readLine("輸入年齡: "));
  9.           if (a>=18)
  10.                 System.out.print("恭喜!可以考駕照了")    ;
  11.               else
  12.                 System.out.print("還未滿18歲喔")          ;
  13.     }
  14.     }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int age;
  7.          Console c=System.console();
  8.          age=Integer.parseInt(c.readLine("請輸入你的年紀:"));
  9.          if(age>=18)
  10.          {
  11.          System.out.print("恭喜!你可以考駕照了!");
  12.          }
  13.          else
  14.          {
  15.          System.out.print("未滿18,還得再等等喔!");
  16.          }
  17.     }
  18. }
複製代碼

TOP

  1. import java.lang.System;
  2. import java.io.Console;
  3. public class ch05
  4. {
  5.   public static void main(String args[])
  6.   {
  7.      Console c=System.console();
  8.      int age;
  9.      System.out.print("請輸入年紀:  ");
  10.      age=Integer.parseInt(c.readLine());
  11.      if(age>=18)
  12.                 System.out.println("可以考駕照了!");
  13.      else
  14.          System.out.print("再等等~~~~");

  15.   }
  16. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class juniorCh01
  3. {
  4. public static void main(String args[])
  5.    {
  6.      int m;
  7.     Console c = System.console();
  8.     System.out.print("請輸入你的年紀: ");
  9.     m=Integer.parseInt(c.readLine());
  10.     if(m>=18)
  11.       System.out.print("可以考駕照了!");
  12.     else
  13.       System.out.print("在等等~~");
  14.    }
  15. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class Ch19
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int age;
  7.          Console c=System.console();
  8.          age=Integer.parseInt(c.readLine("請輸入你的年紀:"));
  9.          if(age>=18)
  10.          {
  11.          System.out.print("恭喜!你可以考駕照了!");
  12.          }
  13.          else
  14.          {
  15.          System.out.print("未滿18,還得再等等喔!");
  16.          }
  17.     }
  18. }
複製代碼

TOP

返回列表