- * 分析:
- * 1.键盘录入字符串
- * 2.遍历获取每一位字符,
- * 3.小写转成大写。
- *5.大写转小写
-
- *
- *
- */
- public class Demo2 {
- public static void main(String[] args) {
-
- //键盘录入
- Scanner sc=new Scanner(System.in);
- System.out.println("请输入字符串(只可包含字母和数字):");
- String s=sc.nextLine();
-
-
-
- //遍历得到每一位字符
- 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);
-
- }
-
-
- }System.out.println();
-
- }
- }
复制代码 我记得你问了好几遍了 |