标签:
import java.io.*;
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”后回车会看到打印结果,可是为什么不能运行呢?
具体该怎么运行呢?
新人求助
标签:
原文地址:http://www.cnblogs.com/gdfsg46/p/4263693.html