ํ๋ก๊ทธ๋๋จธ์ค - ํน์ ๋ฌธ์ ์ถ๋ ฅํ๊ธฐ - JS
2023. 7. 23. 20:04ใStudy_Develop/์๊ณ ๋ฆฌ์ฆ | ์ฝ๋ฉํ ์คํธ
๋ฐ์ํ
๋ฌธ์
๋ค์๊ณผ ๊ฐ์ด ์ถ๋ ฅํ๋๋ก ์ฝ๋๋ฅผ ์์ฑํด ์ฃผ์ธ์.
์ถ๋ ฅ ์์
!@#$%^&*(\'"<>?:;
ํด๋ต
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.on('close', function () {
console.log('!@#$%^&*(\\\'"<>?:;')
});
ํ์ด๋ ์๋ต