import java.io.InputStream;
public class System_Jian {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
InputStream in =System.in;
StringBuilder sb=new StringBuilder();
while(true)
{
int c=in.read();
if(c=='\r')
continue;
if(c=='\n')
{
String s=sb.toString();
if("over".equals(s))
in.close(); // 问题 break;
System.out.println(s);
sb.delete(0,sb.length());
}
sb.append((char)c);
}
}
}
/*
* 用的工具是 Myeclipse 6.5
* 按照视频做的键盘输入的例子
* 标有问题 不论是in.close();还是 break; 都不能终止程序
* 输入 后回车 依然会打印出来
*/
|
|