import java.io.*;
class Trest
{
public static void main(String[] args)throws Exception
{
InputStream in=System.in;
InputStreamReader isr=new InputStreamReader(in);
BufferedReader bfr=new BufferedReader(isr);
Object s=null; //这里的String 为什么不可以用Object来替换呢?Object不是上帝吗。(我在其他的程序可以用的啊,在这里一用就报错)
while((s=bfr.readLine())!=null)
{
if(s.equals("ooo"))
break;
System.out.println(s.toUpperCase());
}
bfr.close();
}
} |
|