[프로그래머스/js] 직각삼각형 출력하기
2023. 4. 3. 02:28ㆍ코딩 테스트(Coding Test)/프로그래머스
내 풀이
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 () {
const InputNumber = Number(input[0]);
for(var i=1; i<=InputNumber; i++){
console.log('*'.repeat(i));
}
});
'코딩 테스트(Coding Test) > 프로그래머스' 카테고리의 다른 글
[프로그래머스/SQL 고득점 Kit] SELECT (1) | 2024.09.17 |
---|---|
[java] 프로그래머스 문자열 반복해서 출력하기 / .repeat() (0) | 2024.04.10 |
[프로그래머스/js] 짝수의 합 (0) | 2023.04.02 |
[프로그래머스/js] 각도기 (0) | 2023.04.02 |
[프로그래머스/js] 특정 문자 제거하기 (0) | 2023.04.02 |