프로그래밍/알고리즘

2) 대소문자 변환 with JAVA

aSpring 2023. 11. 10. 06:57
728x90
728x90

Q. 대소문자 변환하기

 

A.

public class convertChar {
    public String solution(String str) {
        String answer = "";
        for(char x : str.toCharArray()) {
            if( x >= 97 && x <= 122 ) answer += (char)(x-32);
            else answer += (char)(x+32);
        }
        return answer;
    }

    public static void main(String[] args) {
        convertChar T = new convertChar();
        Scanner kb = new Scanner(System.in);
        String str = kb.next();
        System.out.print(T.solution(str));
    }
}

 

728x90
728x90

'프로그래밍 > 알고리즘' 카테고리의 다른 글

1) 문자 개수 찾기 with JAVA  (2) 2023.11.09