Kilkat

백준 2446번 python 본문

Programming/python

백준 2446번 python

KimKwangWoon 2021. 3. 17. 17:52
a = int(input())
cnt = 0
space = 0
space_2 = 2
dec = 1
dec_2 = 3
for i in range(0, a):
    print(' ' * space, end = '')
    print('*' * (2 * a - dec))
    space += 1
    dec += 2
for i in range(0, a - 1):
    print(' ' *  (a - space_2), end = '')
    print('*' * (a - (a - dec_2)))
    space_2 += 1
    dec_2 += 2

'Programming > python' 카테고리의 다른 글

백준 2741번 python  (0) 2021.03.17
백준 2577번 python  (0) 2021.03.17
백준 2523번 python  (0) 2021.03.17
백준 2444번 python  (0) 2021.03.17
백준 2440번 python  (0) 2021.03.17
Comments