* 分析:
* 1.键盘录入字符串
* 2.遍历获取每一位字符,
* 3.小写转成大写。
*5.大写转小写
* 6.其他不变
*
*
*/- public class Demo2 {
- public static void main(String[] args) {
-
-
- String s="asc;ba.dvsv,hcdNNN";
-
- //遍历得到每一位字符
- for(int x=0; x<s.length(); x++){
- char ch = s.charAt(x);
-
- //小写转成大写
- if(ch>='a' && ch>='c'){
- ch=Character.toUpperCase(ch);
- System.out.print(ch);
- //大写转小写
- }else if(ch>='A'&&ch<='Z'){
- ch=Character.toLowerCase(ch);
- System.out.print(ch);
- //其他不变
- }else ch=ch;
- System.out.print(ch);
-
-
-
- }System.out.println();
-
- }
- }
复制代码 |