Board logo

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

作者: 陳品肇    時間: 2019-7-1 23:42     標題: if...else 判斷式





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

作者: 林侑成    時間: 2019-7-2 09:51

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

作者: 張閎鈞    時間: 2019-7-2 11:04

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

作者: 黃恆嘉    時間: 2019-7-2 11:06

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

作者: 呂昀宸    時間: 2019-7-2 11:06

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

作者: 黃安立    時間: 2019-7-2 11:07

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

作者: 潘承渙    時間: 2019-7-2 11:10

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

作者: 蔣宗儒    時間: 2019-7-2 11:11

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

作者: 湯東緯    時間: 2019-7-2 11:14

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





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