KAKAO.GG
Algorithm

프로그래머스 특수문자 출력하기 Lv.0

65870717953200389e7820de
2024. 12. 9.
조회 221
#프로그래머스 특수문자 출력하기, 특수문자 출력하기

입력받는 값인 줄 알았으나, 단순하게 console.log(); 작성할 줄 아는지 확인하는 문제입니다.

 

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

rl.on('close', function () {
    console.log('!@#$%^&*(\\\'"<>?:;');
});
프로그래머스 특수문자 출력하기 Lv.0 - Tech Data - KAKAO.GG