提交时间:2024-01-04 15:21:35
运行 ID: 36843
for i in range(1,10): for j in range(1,i+1): print(str(i)+'*'+str(j)+'='+str(i*j),end='\t') print( )