Commit 4e11aa89 by BellCodeEditor

auto save

parent b22a30b2
Showing with 4 additions and 4 deletions
for i in range(1,10):
for j in range(1,i+1):
print(j,"*",i,"=",(j*i),end=" ")
print()
for i in range(1,100): #借助变量i设置行循环的次数
for j in range(1,i+1): #借助变量j设置循环的次数
print(j,"*",i,"=",(j*i),end=" ") #打印出乘法表达式
print() #打印完一行算式换行
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment