티스토리 뷰
📖 question
https://www.acmicpc.net/problem/2522
✍️ answer
n = int(input())
for i in range(n):
print(" "*(n-i-1), end="")
print("*"*(i+1))
for i in range(1, n):
print(" "*(i), end="")
print("*"*(n-i))
'Python > BAEKJOON' 카테고리의 다른 글
9325 얼마? (0) | 2022.06.09 |
---|---|
2523 별 찍기 - 13 (0) | 2022.06.09 |
2444 별 찍기 - 7 (0) | 2022.06.06 |
2069 최대공약수와 최소공배수 (0) | 2022.06.05 |
5635 생일 (0) | 2022.06.05 |
댓글