문자열 붙여서 출력하기
https://school.programmers.co.kr/learn/courses/30/lessons/181946
📔 문제 설명
두 개의 문자열 str1, str2가 공백으로 구분되어 입력으로 주어집니다.
입출력 예와 같이 str1 과 str2을 이어서 출력하는 코드를 작성해 보세요
💡 입출력 예
applepen
💻내가 작성한 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = [];
rl.on("line", function (line) {
input = line.split(" ");
}).on("close", function () {
str1 = input[0];
str2 = input[1];
console.log(str1 + str2);
});
This post is licensed under CC BY 4.0 by the author.