본문 바로가기
CS/코딩테스트

[JS 코딩테스트] 프로그래머스 Lv. 0 - 문자열 출력하기 (181952) with readline

by 박히밍 2023. 7. 13.
반응형

[JS 코딩테스트] 프로그래머스 Lv. 0 - 문자열 출력하기 (181952) with readline

 

[JS 코딩테스트] 프로그래머스 Lv. 0 - 문자열 출력하기 (181952) with readline

 

 

문제 설명

문자열 str이 주어질 때, str을 출력하는 코드를 작성해 보세요.

 

 

제한사항

  • 1 ≤ str의 길이 ≤ 1,000,000
  • str에는 공백이 없으며, 첫째 줄에 한 줄로만 주어집니다.

 

 

입출력 예

입력 #1

HelloWorld!



출력 #1

HelloWorld!

 

 

 

템플릿

 

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

let input = [];

rl.on('line', function (line) {
    input = [line];
}).on('close',function(){
    str = input[0];
});

 


 

 

나의 제출 답안

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

let input = [];

rl.on('line', function (line) {
    input = [line];
}).on('close',function(){
    str = input[0];
    console.log(str)
});

 

 

 

 

 


 

 

 

readline 사용법

 

 

1. readline 모듈 가져오기

const readline = require("readline");

 

 

2. readline 을 이용하여 입출력을 위한 인터페이스 객체 생성

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

 

 



3. 입출력 코드 작성 문법

rl.on('line', (line) => {
  // 입력 받은 값을 처리하는 코드 
  rl. close(); // close가 없으면 무한하게 입력 받으니 주의!
});
  
rl.on('close', () => {
  // 입력이 끝나고 실행하는 코드
  process.exit();
});

 

 

 

반응형