avascript
process.stdin.setEncoding('utf8');
process.stdin.on('data', data => {
const n = data.split(" ");
const a = Number(n[0]), b = Number(n[1]);
for(let i=0; i < b; i++){
let star = ''
for(let j=0; j <a; j++){
star+='*'
}
console.log(star)
}
});
python
a, b = map(int, input().strip().split(' '))
for i in range(b):
star = ''
for i in range(a):
star +='*'
print(star)
'알고리즘' 카테고리의 다른 글
[백준 15554번][python/javascript] 빠른 A+B (0) | 2022.01.11 |
---|---|
[javascript] 프로그래머스 - 부족한 금액 계산하기 (0) | 2021.08.08 |
[python/nodejs] 5543번 상근날드 (0) | 2020.04.25 |
[python/nodejs] 10039번 평균점수 (0) | 2020.04.25 |
[python/nodejs] 백준 알고리즘 14681번 (0) | 2020.04.24 |
댓글