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