Notice
Recent Posts
Recent Comments
Link
COCO World
[JavaScript/자바스크립트] 프로그래머스 Level.0 - 문자열 반복해서 출력하기 본문
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));
});
🐳 문제 설명
문자열 str과 정수 n이 주어집니다.
str이 n번 반복된 문자열을 만들어 출력하는 코드를 작성해 보세요.
🐳 제한 조건
- 1 ≤ str의 길이 ≤ 10
- 1 ≤ n ≤ 5
🐳 입출력 예
입력 #1
string 5
출력 #1
stringstringstringstringstring
🐳 작성 솔루션
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));
});
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[JavaScript/자바스크립트] 프로그래머스 Level.0 - 덧셈식 출력하기 (0) | 2023.05.22 |
---|---|
[JavaScript/자바스크립트] 프로그래머스 Level.0 - 특수문자 출력하기 (0) | 2023.05.22 |
[JavaScript/자바스크립트] 프로그래머스 Level.0 - a와 b 출력하기 (0) | 2023.05.22 |
[JavaScript/자바스크립트] 프로그래머스 - 모의고사 (0) | 2023.02.02 |
[JavaScript/자바스크립트] 프로그래머스 - 로또의 최고 순위와 최저 순위 (0) | 2023.02.02 |