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