新人,有关输入输出流的问题
import *;public class Echo {
public static void main(String[] args)
throws IOException{
BufferedReader in=new BufferedReader(
new InputStreamReader(System.in));
String s;
while((s=in.readLine()).length()!=0)
System.out.println(s);
}
}
这个书上说输入“Hello”后回车会看到打印结果,可是为什么不能运行呢?
具体该怎么运行呢?
新人求助