提交时间:2024-04-09 16:02:55

运行 ID: 40215

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