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

최유나·2024년 7월 22일
0

프로그래머스

목록 보기
41/53

✨ 직사각형 별찍기

나의 풀이

process.stdin.setEncoding('utf8');
process.stdin.on('data', data => {
    const n = data.split(" "); // data를 "" 기준으로 나눈다
    const a = Number(n[0]), 
          b = Number(n[1]);
    // console.log(a); 5
    // console.log(b); 3
    console.log(('*'.repeat(a) + '\n').repeat(b)); 
    // *을 a의 갯수만큼 반복하고, '\enter' 처리 한후, 다시 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)
      // for문을 통해 반복을 돌렸다.
    }

});

0개의 댓글

관련 채용 정보