특수문자 출력하기
https://school.programmers.co.kr/learn/courses/30/lessons/181948
📔 문제 설명
다음과 같이 출력하도록 코드를 작성해 주세요.
💡 입출력 예
!@#$%^&*(\'"<>?:;
💻내가 작성한 코드
1
2
3
4
5
6
7
8
9
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.on("close", function () {
console.log("!@#$%^&*(\\'\"<>?:;");
});
This post is licensed under CC BY 4.0 by the author.