문자열 반복해서 출력하기
https://school.programmers.co.kr/learn/courses/30/lessons/181950
📔 문제 설명
문자열 str과 정수 n이 주어집니다.
str이 n번 반복된 문자열을 만들어 출력하는
💡 입출력 예
stringstringstringstringstring
💻내가 작성한 코드
repeat을 사용해서 반복해서 출력
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 () {
str = input[0];
n = Number(input[1]);
console.log(str.repeat(n));
});
This post is licensed under CC BY 4.0 by the author.