티스토리 뷰
📖 question
https://www.acmicpc.net/problem/2443
✍️ answer
star = int(input())
for i in range(star, 0, -1): # 5,4,3,2,1
print(" "*(star-i), end="")
print("*" * (i-1), end="")
print("*" * (i))
'Python > BAEKJOON' 카테고리의 다른 글
2069 최대공약수와 최소공배수 (0) | 2022.06.05 |
---|---|
5635 생일 (0) | 2022.06.05 |
10833 사과 (0) | 2022.06.02 |
10984 내 학점을 구해줘 (0) | 2022.06.01 |
5565 영수증 (0) | 2022.06.01 |
댓글