[프로그래머스 level1] 직사각형 별찍기

김예지·2021년 10월 9일
0

문제

https://programmers.co.kr/learn/courses/30/lessons/12969


문제 풀이

코드1

process.stdin.setEncoding('utf8');
process.stdin.on('data', data => {
    const n = data.split(" ");
    const a = Number(n[0]), b = Number(n[1]);
    let str='';
    for(let i=0; i<b; i++){
        for(let j=0; j<a; j++){
            str+='*'; 
        }
        str+='\n';
    }
    console.log(str);
});

코드2

repeat을 활용해서 하나의 행을 만들고, b만큼 행을 출력한다.

process.stdin.setEncoding('utf8');
process.stdin.on('data', data => {
    const n = data.split(" ");
    const a = Number(n[0]), b = Number(n[1]);
    
    const row = "*".repeat(a);
    for(let i=0; i<b; i++) {
        console.log(row);
    }
});
profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

1개의 댓글

comment-user-thumbnail
2021년 10월 25일

10/25
console.log는 엔터효과 있음. 주의하기!

답글 달기