提交时间:2024-04-09 16:06:25

运行 ID: 40230

i = 1 while i <= 9: j = i while(j <= i): print(f'{j}*{i}={i*j}', end='\t') j += 1 print('') i += 1