짱해커가 되어보자

boj 2444 본문

프로그래밍_일반/백준

boj 2444

Spadework 2020. 2. 3. 18:21

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

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

 

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

boj 2443  (0) 2020.02.03
boj 2163  (0) 2020.02.03
boj 2748  (0) 2020.02.03
boj 2747  (0) 2020.02.03
boj 15610  (0) 2020.02.03
Comments