标题:为什么会这样??
只看楼主
w289592467
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-4-19
 问题点数:0 回复次数:0 
为什么会这样??
import java.io.*;
public class zuoye3{
public zuoye3(){}
public static void main(String[]args)throws IOException
{
System.out.print(">");
InputStreamReader isr=new InputStreamReader(System.in);
BufferedReader br=new BufferedReader(isr);
String strLine;
char a[]=new char[100];

while((strLine=br.readLine())!=null)
{if(strLine.equals("quit"))
{
break;
}
for(int i=0;i<strLine.length();i++)
{
a[i]=(char) ((strLine.charAt(i))+13);
if(a[i]>'Z')
System.out.println((char)((a[i]-'Z')+'a'));
}
for(int j=0;j<strLine.length();j++)
{
System.out.print(a[j]);
}
System.out.println();
System.out.print(">");

}
br.close();
}
}


if(a[i]>'Z')
System.out.println((char)((a[i]-'Z')+'a'));
这里为什么不会返会去输出小写字母而是输出那些符号的??
搜索更多相关主题的帖子: public import null 
2007-04-27 15:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-135426-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.694331 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved