짱해커가 되어보자

boj 2522 본문

프로그래밍_일반/백준

boj 2522

Spadework 2020. 2. 3. 19:09

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

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

 

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

boj 2953  (0) 2020.02.03
boj 2576  (0) 2020.02.03
boj 2446  (0) 2020.02.03
boj 2445  (0) 2020.02.03
boj 2443  (0) 2020.02.03
Comments