Board logo

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

作者: tonyh    時間: 2020-1-31 10:18     標題: if...else 判斷式





  >    大於
  <    小於
  ==  等於
  >=  大於或等於
  <=  小於或等於
  !=   不等於


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

作者: 張宸翔    時間: 2020-1-31 10:41

  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 age;
  8.         age=Integer.parseInt(c.readLine("請輸入你的年紀: "));
  9.         if(age>=18)
  10.         {
  11.             System.out.println("恭喜!可以考駕照了!");
  12.         }else
  13.         {
  14.             System.out.println("未滿18!還要再等等喔");
  15.         }
  16.     }
  17. }
複製代碼

作者: 蔡承翰    時間: 2020-1-31 10:41

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

作者: 劉家銘    時間: 2020-1-31 10:42

  1. import java.io.Console;
  2. public class Ch08
  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.             System.out.println("恭喜!可以考駕照了!");
  11.         else
  12.             System.out.println("未滿18,還得再等一等喔!");
  13.     }
  14. }
複製代碼

作者: 黃煜城    時間: 2020-1-31 10:43

  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 age;
  8.         System.out.print("請輸入你的年紀:");
  9.         age=Integer.parseInt(c.readLine());
  10.         if(age>=18)
  11.             System.out.println("恭喜你!可以去考駕照了~");
  12.         else
  13.             System.out.println("還不能喔!再等等吧~");
  14.     }
  15. }
複製代碼

作者: 蘇宜貞    時間: 2020-1-31 10:43

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

作者: 盧弘毅    時間: 2020-1-31 10:43

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

作者: 蘇行一    時間: 2020-1-31 10:46

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

作者: 何蕙妘    時間: 2020-1-31 10:47

  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 age;
  8.          System.out.print("請輸入你的年齡: ");
  9.          age=Integer.parseInt(c.readLine());
  10.          if(age>=18)
  11.              System.out.println("可以考駕照了!");
  12.          else
  13.               System.out.println("再等等!");
  14.     }
  15. }
複製代碼

作者: 楊秉樺    時間: 2020-1-31 10:47

  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;
  8.         a=Integer.parseInt(c.readLine("請輸入你的年紀: "));
  9.         if (a>=18)
  10.         {
  11.             System.out.println("恭喜!可以考駕照了!");
  12.         }
  13.         else
  14.         {
  15.             System.out.println("未滿18,還得再等一等喔!");
  16.         }
  17.     }
  18. }
複製代碼

作者: 沙芃妘    時間: 2020-1-31 10:48

  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 age;
  8.          System.out.print("輸入年紀:");
  9.          age=Integer.parseInt(c.readLine());
  10.          if(age>=18)
  11.              System.out.println("可以考駕照了!");
  12.          else
  13.              System.out.println("再等等");
  14.     }
  15. }
複製代碼

作者: 陳梓瑜    時間: 2020-1-31 11:01

  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 age;
  8.         System.out.print("輸入年紀: ");
  9.         age=Integer.parseInt(c.readLine());
  10.         if(age>=18)
  11.             System.out.println("可以考駕照了!");
  12.         else
  13.             System.out.println("再等等~~");
  14.     }
  15. }
複製代碼

作者: 邱翊博    時間: 2020-1-31 11:02

  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 age;
  8.         age=Integer.parseInt(c.readLine("輸入年紀: "));
  9.         if(age>=18)
  10.              System.out.println("可以考駕照了!");
  11.         else
  12.              System.out.println("休但幾壘!");
  13.     }
  14. }
複製代碼





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