本帖最后由 非5莫属 于 2014-7-7 08:18 编辑
/*编写程序,从键盘接收一个字符串,对字符串中的字母进行大小写互转(大写字母转成小写,小写字母转成大写)。*/
import java.util.Scanner;
public class Test7 {
public static void main(String[] args){
Scanner in=new Scanner(System.in);
System.out.println("请输入字符串:");
String str=in.next();
char[] ch1=str.toCharArray();
char[] ch2=new char[ch1.length];
for(int i=0;i<ch1.length;i++){
ch2=ch1;
if(ch2 >= 97 && ch2 <= 122)
{
ch2=(char)((int)ch2-32);
System.out.print(ch2);
}
else if(ch2 >= 65 && ch2 <= 90){
ch2=(char)((int)ch2+32);
System.out.print(ch2);
}
else{
System.out.print("输入不符合要求");
}
}
}
}
|
|