728x90
반응형
단순 구현 문제이다.
while 1:
n = int(input())
if n == 0:
break
for i in range(1, n+1):
print('*'*i)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2822번 점수 계산(python) (0) | 2021.02.17 |
---|---|
백준 알고리즘 6627번 The Easiest Problem is This One(python) (0) | 2021.02.15 |
백준 알고리즘 6322번 직각 삼각형의 두 변(python) (0) | 2021.02.15 |
백준 알고리즘 6139번 Speed Reading(python) (0) | 2021.02.15 |
백준 알고리즘 6131번 완전 제곱수(python) (0) | 2021.02.15 |