Board logo

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

作者: 鄭繼威    時間: 2023-4-26 01:08     標題: if...else 判斷式

本帖最後由 鄭繼威 於 2023-5-3 21:01 編輯




雙向判斷式語法
if (條件式或布林值){
   程式區塊一;
}
else{
   程式區塊二;
}

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

作者: 李彣    時間: 2023-4-26 21:21

此帖僅作者可見
作者: 黃裕恩    時間: 2023-4-28 22:48

此帖僅作者可見
作者: 林劭澧    時間: 2023-5-3 20:18

此帖僅作者可見




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