利用 if...else 判斷式, 設計一程式判斷使用者是否可以考駕照了.- import java.io.Console;
- public class ch9
- {
- public static void main(String args[])
- {
- Console console=System.console();
- int age;
- System.out.print("請輸入你的年紀: ");
- age=Integer.parseInt(console.readLine());
- if(age>=18)
- {
- System.out.print("恭喜你可以考駕照了!");
- }
- else
- {
- System.out.print("哎呀未滿18歲, 還得等一等!");
- }
- }
- }
複製代碼 |