# 九九乘法表
for x in range(1, 10):
for y in range(1, x+1):
print('%dX%d=%d' % (y, x, x*y), end=' ')
print()
最后编辑:2024年07月21日
©著作权归作者所有
最新回复