提交时间:2026-04-22 16:14:31
运行 ID: 318260
n = int(input()) # 循环 n 行 for i in range(n): # 打印 i 个空格 + (n-i) 个星号 print(' ' * i + '*' * (n - i))