本帖最後由 古蕾娜 於 2019-7-1 15:50 編輯
- public class Ch06
- {
- public static void main(String args[])
- {
- int x;
- float y;
- Console c=System.console();
- System.out.print("Enter a whole number: ");
- x=Integer,parseInt(c.readLine());
- System.out.printlm("The whole number you just entered: "+x);
- System.out.print("Enter a decimal number: ");
- y=Float.parseFloat(c.readLine());
- System.out.print("The decimal number you just entered: "+y);
- }
- }
複製代碼- public class Ch06
- {
- public static void main(String args[])
- {
- int x;
- float y;
- Console c=System.console();
- x=Integer,parseInt(c.readLine("Enter a whole number: "));
- System.out.printlm("The whole number you just entered: "+x);
- y=Float.parseFloat(c.readLine("Enter a decimal number: "));
- System.out.print("The decimal number you just entered: "+y);
- }
- }
複製代碼 |