[프로그래머스] 특수문자 출력하기

Chobby·2023년 4월 27일
1

Programmers

목록 보기
199/345

😀문제 설명

다음과 같이 출력하도록 코드를 작성해 주세요.


😁출력 예시

!@#$%^&*(\'"<>?:;

😂나의 풀이

const readline = require('readline');
const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});

rl.on('close', function () {
    console.log('!@#$%^&*(\\\'"<>?:;')
});
profile
내 지식을 공유할 수 있는 대담함

0개의 댓글