cool hamsters never sleep

백준 2439. 별 찍기 - 2 본문

Python Algorithm

백준 2439. 별 찍기 - 2

슈슈 susu 2022. 7. 15. 17:20
T = int(input())
for i in range(1, T+1):
    print(' '*(T-i) + '*'*i)

 

'Python Algorithm' 카테고리의 다른 글

백준 10871. X보다 작은 수  (0) 2022.07.16
백준 1110. 더하기 사이클  (0) 2022.07.16
백준 2438. 별 찍기 - 1  (0) 2022.07.15
백준 11022. A+B - 8  (0) 2022.07.15
백준 11021. A+B - 7  (0) 2022.07.15
Comments