打印99乘法表

def cfb():
j = 0
while j < 9:
j += 1
# 内循环控制行
i = 0
while i < j:
i += 1
print(i, '*', j, '=', (i * j), end=' ')
print()
cfb
原文地址:https://www.cnblogs.com/biaobiaohu/p/14245113.html