Java中将输入的字符串中字母进行大小写互换
import java.util.*;
/**
* @author lihao
* @Date 2022/9/24 19:08
*/
public class Test {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String temp = sc.nextLine();
//大小写转换前的形式
System.out.println(temp);
StringBuffer sb = new StringBuffer();
for(int i=0;i<temp.length();i++){
char c=temp.charAt(i);
if(c>='A' && c<='Z'){
c+=32;
}else{
c-=32;
}
sb.append(c);
}
//大小写转换后的形式
System.out.println(sb);
}
}