本帖最后由 何伟超 于 2014-2-23 16:39 编辑
题:编写程序,从键盘接收一个字符串,对字符串中的字母进行大小写互转(大写字母转成小写,小写字母转成大写)。
代码:
public class Demo
{
public static void mian(String[] agrs) throws IOException
{
BufferedReader bufr =
new BufferedReader(new InputStreamReader(System.in));
String line = null;
while((line=bufr.readLine())!=null)
{
if("over".equals(line))
break;
//所求代码块
}
bufr.close();
}
}
|