返回列表 發帖

[隨堂測驗] if...else 判斷式

本帖最後由 許婷芳 於 2019-8-31 14:32 編輯

1. Integer.parseInt();  ( int即為integer的縮寫 )
2. Float.parseFloat();
3. Double.parseDouble();
  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.          {
  12.               System.out.println("可以考駕照了!");
  13.          }
  14.          else
  15.          {
  16.               System.out.println("再等等~~");
  17.          }
  18.     }
  19. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表