本帖最后由 张向辉 于 2013-2-3 12:16 编辑
import java.io.IOException;
import java.io.InputStream;
public class Dataoutput {
/**
* @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 ch=in.read();
sb.append((char)ch);
if(ch=='\r')
continue;
if(ch=='\n')
{
String s=sb.toString();
if("over".equals(s))
break;
else if ("18".equals(s))
{
System.out.println("2013年4月20号");
sb.delete(0,sb.length());
}
else if("19".equals(s))
{
System.out.println("2013年5月20号");
sb.delete(0,sb.length());
}
else
{
System.out.println("期号不存在");
sb.delete(0,sb.length());
}
}
}
in.close();
}
}
结果不对,帮忙修改一下,谢谢!!! |