- // Online Java Compiler
- // Use this editor to write, compile and run your Java code online
- import java.io.Console;
- class HelloWorld {
- public static void main(String[] args) {
- int x;
- float y;
- Console c=System.console();
- System.out.print("enter: ");
- x=Integer.parseInt(c.readLine());
- System.out.println("enter: "+x);
- System.out.print("enter: ");
- y=Float.parseFloat(c.readLine());
- System.out.println("enter: "+y);
-
- }
- }
複製代碼 |