提交时间:2024-01-09 16:02:26
运行 ID: 37044
for i in range(1,10): for j in range(1,i+1): print(f'{i}*{j}={i*j}',end='\t') print()