本帖最後由 許婷芳 於 2019-8-31 14:32 編輯
1. Integer.parseInt(); ( int即為integer的縮寫 )
2. Float.parseFloat();
3. Double.parseDouble();- import java.io.Console;
- public class Ch09
- {
- public static void main(String args[])
- {
- Console c=System.console();
- int age;
- System.out.print("輸入年紀: ");
- age=Integer.parseInt(c.readLine());
- if(age>=18)
- {
- System.out.println("可以考駕照了!");
- }
- else
- {
- System.out.println("再等等~~");
- }
- }
- }
複製代碼 |