返回列表 發帖

if 判斷式

本帖最後由 tonyh 於 2014-5-10 14:47 編輯

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

  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.         String str="可以考駕照了";
  9.         System.out.print("請輸入你的年紀: ");
  10.         age=Integer.parseInt(c.readLine());
  11.         if(age<18)
  12.             str="未滿十八歲,須等!!";
  13.         System.out.print(str);     
  14.     }
  15. }
複製代碼

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 age;
  8.          String str="恭喜!可以考駕照了! ";
  9.          System.out.print("請輸入你的年紀: ");
  10.          age=Integer.parseInt(c.readLine());
  11.          if(age<18)
  12.          str="未滿18,想考給小費!";
  13.          System.out.print(str);
  14.     }
  15. }
複製代碼

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

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

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 age;
  8.         String str="可以考駕照了";
  9.         System.out.print("請輸入你的年紀: ");
  10.         age=Integer.parseInt(c.readLine());
  11.         if(age<18)
  12.             str="未滿十八歲,須等等!!";
  13.         System.out.print(str);     
  14.     }
  15. }
複製代碼

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

TOP

返回列表