提交时间:2024-01-04 15:31:47

运行 ID: 36854

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