문제 설명
영어 알파벳으로 이루어진 문자열 str이 주어집니다. 각 알파벳을 대문자는 소문자로 소문자는 대문자로 변환해서 출력하는 코드를 작성해 보세요.
제한 사항
1 ≤ str의 길이 ≤ 20 str은 알파벳으로 이루어진 문자열입니다.
나의 코드
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String a = sc.next();
for(int i=0; i<a.length(); i++) {
char x = a.charAt(i);
if(Character.isLowerCase(x)) {
System.out.print(Character.toUpperCase(x));
} else {
System.out.print(Character.toLowerCase(x));
}
}
}
}
다른 사람들의 코드를 보며 느낀 점
String answer = "";
를 선언하여 중복 코드를 없앨 수 있다.