提交时间:2024-12-24 15:41:21

运行 ID: 50614

for i in range(1, 10): for j in range(1, i + 1): result = i * j print(f"{j}*{i}={result}", end='\t') print()