문자열 str이 주어집니다.
문자열을 시계방향으로 90도 돌려서 아래 입출력 예와 같이 출력하는 코드를 작성해 보세요.
입력 :
abcde
출력 :
a
b
c
d
e
<나의 답안>
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = [];
rl.on('line', function (line) {
input = line
for ( i = 0 ; i < input.length ; i ++) {
console.log(input[i])
}
}).on('close',function(){
rl.close()
});