提交时间:2024-04-09 15:56:04
运行 ID: 40200
i = 1 while i <= 9: j = 1 while(j <= i): print(f'{i}*{j}={i*j}',end='\t') j += 1 print('') i += 1