返回列表 回复 发帖

求java的输入语句

求java的输入语句,类似于c++的输入
使用BufferedReader的readLine方法。
System.out.println("Hello,word")  配套JDK6.0
System.out.println("Hello,word")  配套JDK6.0
icangfeng 发表于 2010-5-20 20:01
这是输出语句。
import java.util.Scanner;
Scanner input=new Scanner(System.in);
System.out.print("请输入数字:");
                int year=input.nextInt();
不好意识我上次看错了,呵呵,这次应该不会了吧?
返回列表