[ํ๋ก๊ทธ๋๋จธ์ค] ๋ฌธ์์ด ๋ฐ๋ณตํด์ ์ถ๋ ฅํ๊ธฐ (JavaScript ๋ฌธ์ ํ์ด)CS/Solutions2023. 12. 13. 20:40
Table of Contents
๋ฐ์ํ
๐ ๋ฌธ์ ์ค๋ช
๋ฌธ์์ด str
๊ณผ ์ ์ n
์ด ์ฃผ์ด์ง๋๋ค.str
์ด n
๋ฒ ๋ฐ๋ณต๋ ๋ฌธ์์ด์ ๋ง๋ค์ด ์ถ๋ ฅํ๋ ์ฝ๋๋ฅผ ์์ฑํด ๋ณด์ธ์.
๐ ์ ํ์ฌํญ
- 1 ≤
str
์ ๊ธธ์ด ≤ 10 - 1 ≤
n
≤ 5
๐ฅ ์ ์ถ๋ ฅ ์
์ ๋ ฅ #1
string 5
์ถ๋ ฅ #1
stringstringstringstringstring
๐ป ๋์ ํ์ด
readline
๋ชจ๋์ ์ฌ์ฉํ์ฌ ์ฌ์ฉ์์ ์ ๋ ฅ์ ๋ฐ์ต๋๋ค.- ์
๋ ฅ๋ ๋ฌธ์์ด์ ๊ณต๋ฐฑ์ ๊ธฐ์ค์ผ๋ก ๋ถ๋ฆฌํ์ฌ
input
๋ฐฐ์ด์ ์ ์ฅํฉ๋๋ค. - ๋ฐฐ์ด์ ์ฒซ ๋ฒ์งธ ์์๋ฅผ ๋ฌธ์์ด
str
๋ก, ๋ ๋ฒ์งธ ์์๋ฅผ ์ ์n
์ผ๋ก ๋ณํํฉ๋๋ค. str.repeat(n)
์ ์ฌ์ฉํ์ฌ ๋ฌธ์์ดstr
์n
๋ฒ ๋ฐ๋ณตํ๊ณ , ๊ฒฐ๊ณผ๋ฅผ ์ฝ์์ ์ถ๋ ฅํฉ๋๋ค.
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))
});
๋ฐ์ํ
'CS > Solutions' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
@์ค๋น :: console.log("Hello, World!");
ํฌ์คํ ์ด ์ข์๋ค๋ฉด "์ข์์โค๏ธ" ๋๋ "๊ตฌ๋ ๐๐ป" ํด์ฃผ์ธ์!