import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.next();
String result = "";
for(char x : str.toCharArray()) {
if(Character.isLowerCase(x)) {
result += Character.toUpperCase(x);
} else {
result += Character.toLowerCase(x);
}
}
System.out.println(result);
}
}
'ㅋㅌ' 카테고리의 다른 글
문자열 k만큼 반복하여 출력하기 (0) | 2023.06.07 |
---|---|
문자 리스트를 문자열로 변환하기 (0) | 2023.06.06 |
문자열 겹쳐쓰기, 문자열 대체/StringBuilder, substring() (1) | 2023.06.05 |
문자열을 90도 돌려서 출력하기 (0) | 2023.06.04 |
자바 특수문자 출력하기 (0) | 2023.06.04 |