[프로그래머스]JAVASCRIPT- 9

김윤지·2022년 8월 17일
0

JAVASCRIPT

목록 보기
10/25

간단한 별찍기 문제~


위에 process.stdin.setEncoding이 뭔지는 모르겠음..

process.stdin.setEncoding('utf8');
process.stdin.on('data', data => {
    const n = data.split(" ");
    const a = Number(n[0]), b = Number(n[1]);
let result = "";

for (let i = 0; i < b; i++) {
    for (let j = 0; j < a; j++) {
        result += '*';
    }
    result += '\n'
}
console.log(result);
});

for문 2개로 완성~~

그래도 별찍기는 완성~

profile
Java, Javascript, python, DB

0개의 댓글