짱해커가 되어보자

boj 2445 본문

프로그래밍_일반/백준

boj 2445

Spadework 2020. 2. 3. 19:01

* Solved 기준 브론즈3 단순 풀이

n = int(input())
for i in range(n):
	print('{1}{0}{1}'.format(' '*((n-i-1)*2), '*'*(i+1)))
for i in range(n-1):
	print('{1}{0}{1}'.format(' '*((i+1)*2), '*'*(n-i-1)))

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 2522  (0) 2020.02.03
boj 2446  (0) 2020.02.03
boj 2443  (0) 2020.02.03
boj 2163  (0) 2020.02.03
boj 2444  (0) 2020.02.03
Comments