[프그] 대소문자 바꿔서 출력하기

dano Lee·2023년 5월 7일
0

알고리즘 문제 풀이

목록 보기
24/52

문제

영어 알파벳으로 이루어진 문자열 str이 주어집니다. 각 알파벳을 대문자는 소문자로 소문자는 대문자로 변환해서 출력하는 코드를 작성해 보세요.

입출력 예

입력 #1
aBcDeFg
출력 #1
AbCdEfG

해답

const readline = require('readline');
const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});

let input = [];
let answer = '';

rl.on('line', function (line) {
    input = [line];
}).on('close',function(){
    str = input[0];
    for(let i = 0; i < str.length; i++){
        if(str[i] === str[i].toLowerCase()) answer += str[i].toUpperCase()
        else answer += str[i].toLowerCase()
    }
    console.log(answer)
});
profile
세상에 이로운 영향력을 퍼뜨리고 싶은 프론트엔드 개발자 입니다.

0개의 댓글