[프로그래머스] 기본출력문제들

·2023년 11월 19일
1

TIL series

목록 보기
10/28

문자열 출력하기

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

//require: 외부 모듈 가져오는 메소드
//readline: 한 번에 한줄 씩 데이터 읽기 위한 인터페이스 제공하는 모듈
const read = require('readline');


//인터페이스 생성
const rl = read.createInterface({
    input: process.stdin,
    output: process.stdout
});


let input = [];

rl.on('line', function (input_str) {   //"str"
    //'line': 입력받는 값을 한 줄식 읽어 문자열 타입으로 전달하는 역할 하는 이벤트
    //입력받은 값을 처리하는 코드->'line'이벤트로 받은 내용 처리
    input = [input_str];

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

a와 b 출력하기

:정수 a와 b가 주어집니다. 각 수를 입력받아 입출력 예와 같은 형식으로 출력하는 코드를 작성해 보세요.

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

let input = [];

rl.on('line', function (line) {
    input = line.split(' ');
    rl.close();
}).on('close', function () {
    console.log("a = "+Number(input[0]) + "\nb = " + Number(input[1]));
});

문자열 반복해서 출력하기

:문자열 str과 정수 n이 주어집니다.
str이 n번 반복된 문자열을 만들어 출력하는 코드를 작성해 보세요.

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

let input = [];

rl.on("line", function (line) {
  input = line.split(" ");
  rl.close();
});

rl.on("close", function () {
  str = input[0];
  n = Number(input[1]);

  for (let i = 0; i < n; i++) process.stdout.write(str);
});

대소문자 바꿔서 출력하기

:영어 알파벳으로 이루어진 문자열 str이 주어집니다. 각 알파벳을 대문자는 소문자로 소문자는 대문자로 변환해서 출력하는 코드를 작성해 보세요.

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

let input = [];

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

function atoA(str) {
  let output = "";
  for (let i = 0; i < str.length; i++) {
    if ("a" <= str[i] && str[i] <= "z") output = output + str[i].toUpperCase();
    else output = output + str[i].toLowerCase();
  }
  return output;
}

0개의 댓글