- 아스키코드 또는 Character.isLowerCase(), isupperCase() 사용
public class Main {
public String solution(String next) {
String result ="";
for (char x :
next.toCharArray()) {
if (x >= 'a' && x <= 'z'){
result += Character.toUpperCase(x);
}else {
result += Character.toLowerCase(x);
}
}
return result;
}
public static void main(String[] args) {
Main T = new Main();
Scanner sc = new Scanner(System.in);
String next = sc.next();
System.out.println(T.solution(next));
}