#2
冬天的大白菜2018-01-08 16:31
|
i=1
while i<=9:
j=1
while j<=i:
print ("%d*%d=%2d"%(j,i,i*j)),
j+=1
i+=1
print " "
求助
while循环输出九九乘法表,为什么不运行,谢谢