当前位置: 代码迷 >> J2SE >> 关于JAVA中输入的有关问题
  详细解决方案

关于JAVA中输入的有关问题

热度:173   发布时间:2016-04-24 13:22:21.0
关于JAVA中输入的问题
请问在jdk1.4版本中 如何从键盘输入一个数字然后保存在一个整形变量中 功能就相当于c语言的 scanf

------解决方案--------------------
Java code
 import   java.io.*; public   class   Rea//方法2 {     public static void main(String[]args)throws IOException     {     BufferedReader din=new BufferedReader(new InputStreamReader(System.in));     System.out.print("anInt:");     int anInt=Integer.parseInt(din.readLine());     System.out.println(anInt);     }}
  相关解决方案