Description X现在要学习英文以及各种稀奇古怪的字符的了。现在他想把一串字符中的小写字母变成大写字符,大写字母变成小写字母,其他的保持不变。 Input 输入有多组。 每组输入一个字符串,长度不大于80,不包含空格。 Output 输出转换后的字符串 Sample Input A* B+ Output a* b+
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner reader = new Scanner(System.in); String str; char ch; int i; while (reader.hasNext()) { str = reader.nextLine(); for (i = 0; i < str.length(); i++) { ch = str.charAt(i); if (ch >= 'A' && ch <= 'Z') { ch = (char) (ch + 32); System.out.print(ch); } else if (ch >= 'a' && ch <= 'z') { ch = (char) (ch - 32); System.out.print(ch); } else System.out.print(ch); } System.out.println(); } } }