提交时间:2024-12-24 15:10:08

运行 ID: 50544

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