Commit 00919865 by BellCodeEditor

auto save

parent 6e5c2f0c
Showing with 14 additions and 0 deletions
# for i in range(9,0,-1):
# for v in range(1,i+1):
# num1 = i*v
# print("%s*%s=%s"%(i,v,num1),end=" ")
# print()
i = 9
while i>=1:
v = i
while v>0:
print("%s*%s=%s"%(i,v,i*v),end=" ")
v-=1
i-=1
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