【九九乘法表】

i = 0  #while 九九乘法表
j = 0
while i < 9:
    i += 1
    while j<9:
        j += 1
        sum = i + j
        total="%s + %s = %s"% (i,j,sum)
        print(total,end=" ")
        if i == j:
            j = 0
            print("\n")
            break
while实现九九乘法表

相关文章:

  • 2021-11-14
  • 2021-06-01
  • 2021-11-30
  • 2022-02-12
  • 2022-02-21
  • 2021-11-27
猜你喜欢
  • 2022-02-14
  • 2021-09-06
  • 2021-05-20
  • 2021-10-31
  • 2022-12-23
  • 2021-12-16
  • 2021-09-24
相关资源
相似解决方案