코딩테스트

코딩테스트 별로 직각삼각형 출력하기

김도현2 2023. 5. 24. 23:43
반응형

코딩테스트 별로 직각삼각형 출력하기

 

 

 

문제 설명

 

 

 

출력 예시

 

 

 

코딩테스트의 꽃 별찍기 문제입니다.

for문을 이용하여 console.log 로 출력하면 됩니다!

 

 

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

let input = [];

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

요즘 새로나온 출력문? 인거 같습니다. 

on('close', fuction 어쩌고 하는 코드 밑에 consloe.log 를 이용하여 출력하면 됩니다.

 

input[0]에는 문제에서 출제인 매개변수인 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(' ');
}).on('close', function () {
    let star = '';	// *이 들어갈 변수
    for(let i=0; i<input[0]; i++){
        star += "*";	// *이 한개씩 증가
        console.log(star)	//console.log로 출력하니 자동 줄바뀜
    }
});

//*
//**
//***

star라는 *이 들어갈 변수를 만들어준뒤

 

for문을 이용하여 star변수에 하나씩 *이 증가하여 

 

console.log 로 출력하여 출력 할때마다 자동으로 줄이 바뀝니다.