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