BC109 正斜线形图案
思路:
step1:i和j相等时打印;
代码如下:
while True:
try:
n = int(input())
i = 1
while i <= n:
j = n
while j >= 1:
if i == j:
print('*',end='')
else:
print(' ',end='')
j -= 1
print()
i += 1
except:
break