๋ชฉ๋ก๋ฌธ์์ด ๋ถ์ฌ์ ์ถ๋ ฅํ๊ธฐ (1)
๐ค ์์งlog ๐ค
[ํ๋ก๊ทธ๋๋จธ์ค:Javascript] ๋ฌธ์์ด ๋ถ์ฌ์ ์ถ๋ ฅํ๊ธฐ
ํ๋ก๊ทธ๋๋จธ์ค Lv.0 - ๋ฌธ์์ด ๋ถ์ฌ์ ์ถ๋ ฅํ๊ธฐ ๐ ๋ฌธ์ ์ค๋ช ๐ ์ ํ์กฐ๊ฑด 1 ≤ str1, str2์ ๊ธธ์ด ≤ 10 ๐ ํ์ด 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(input.join("")); }); โ input = line.split(' ') : ์ผ๋ก ๋ฐฐ์ด์..
๐ ํ๋ก๊ทธ๋๋จธ์ค
2024. 4. 11. 16:07