Board logo

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

作者: tonyh    時間: 2014-5-10 15:03     標題: if...else 判斷式

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

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

作者: 黃崇維    時間: 2014-5-10 15:16

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

作者: 林以諾    時間: 2014-5-10 15:20

  1. import java.io.Console;
  2. public class ch10
  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.          else
  14.          str="你可以考駕照了!";
  15.          System.out.print(str);
  16.           }
  17. }
複製代碼

作者: 許逸群    時間: 2014-5-10 15:21

  1. import java.io.Console;
  2. public class ch10
  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.          else
  14.          str="你可以考駕照了!";
  15.          System.out.print(str);
  16.           }
  17. }
複製代碼

作者: 劉泳鱔    時間: 2014-5-10 15:21

  1. import java.io.Console;
  2. public class ch10
  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.          else
  14.          str="你可以考駕照了!";
  15.          System.out.print(str);
  16.           }
  17. }
複製代碼

作者: 鎧言    時間: 2014-5-10 15:22

  1. import java.io.Console;
  2. public class ch10
  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.          else
  14.          str="你可以考駕照了!";
  15.          System.out.print(str);
  16.           }
  17. }
複製代碼





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