Notice
Recent Posts
Recent Comments
Link
목록특수문자 출력하기 (1)
COCO World
[JavaScript/자바스크립트] 프로그래머스 Level.0 - 특수문자 출력하기
🐳 문제 설명 다음과 같이 출력하도록 코드를 작성해 주세요. 🐳 제한 조건 - 🐳 입출력 예 !@#$%^&*(\'"?:; 🐳 작성 솔루션 const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); rl.on('close', function () { //console.log('!@#$%^&*(\\\'"?:;') console.log('!@#$%^&*(\\\'"?:;') }); 🐳 끄적끄적 특수문자 출력 방법 코드 표시(출력) \' 작은 따옴표 \" 큰 따옴표 \\ 백슬래시 \n 줄 바꿈 \r 캐리지 리턴(CR) \t 탭(TAB) \b 백스페이스..
코딩테스트/프로그래머스
2023. 5. 22. 16:25