返回列表 發帖

if 判斷式

本帖最後由 tonyh 於 2012-8-11 16:54 編輯

利用 if 判斷式, 以及變數值可不斷被取代的觀念, 設計一程式判斷使用者是否可以考駕照了.
  1. import java.io.Console;
  2. public class ch10
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console console=System.console();
  7.          String str="恭喜你可以考駕照了!";
  8.          int age;
  9.          System.out.print("請輸入你的年紀: ");
  10.          age=Integer.parseInt(console.readLine());
  11.          if(age<18)
  12.               str="哎呀未滿18歲, 還得等一等!";
  13.          System.out.print(str);
  14.     }
  15. }
複製代碼

  1. import java.io.Console;
  2. public class ch12
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console console=System.console();
  7.          String str="未滿18歲,還要等等!";
  8.          int age;
  9.          System.out.print("請輸入你的年紀:");
  10.          age=Integer.parseInt(console.readLine());
  11.          if(age<18)
  12.          str="未滿18歲,在等等吧!";
  13.          System.out.print(str);
  14.     }
  15. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch12
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console console=System.console();
  7.          String str="未滿18歲,還要等等!";
  8.          int age;
  9.          System.out.print("請輸入你的年紀:");
  10.          age=Integer.parseInt(console.readLine());
  11.          if(age<18)
  12.          str="未滿18歲,在等等吧!";
  13.          System.out.print(str);
  14.     }
  15. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch12
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console console=System.console();
  7.          String str="未滿18歲,還要等等!";
  8.          int age;
  9.          System.out.print("請輸入你的年紀:");
  10.          age=Integer.parseInt(console.readLine());
  11.          if(age<18)
  12.          str="未滿18歲,在等等吧!";
  13.          System.out.print(str);
  14.     }
  15. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch12
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          Console console=System.console();
  7.          String str="未滿18歲,還要等等!";
  8.          int age;
  9.          System.out.print("請輸入你的年紀:");
  10.          age=Integer.parseInt(console.readLine());
  11.          if(age<18)
  12.          str="未滿18歲,在等等吧!";
  13.          System.out.print(str);
  14.     }
  15. }
複製代碼

TOP

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

TOP

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

TOP

返回列表