题解 | #翻转金字塔图案#
翻转金字塔图案
http://www.nowcoder.com/practice/c4775776e4464537bfb6a5ba37c596c6
while True:
try:
num =int(input())
a = num
for i in range(num):
print(" " * i + "* " * a)
a -= 1
except:
break