Commit 1a35faa3 by BellCodeEditor

auto save

parent 99c83828
Showing with 21 additions and 0 deletions
for i in range(1,10):
for j in range(i,10):
print(j,"*",i,"=",j*i,end=" ")
print()
\ No newline at end of file
for i in range(1,10):
for k in range(1,i):
print (end=" ")
for j in range(i,10):
print("%d*%d=%2d" %(i,j,i*j),end=" ")
print("")
\ No newline at end of file
i=1
j=1
while i<10:
#j=1
while j<=i:
print(j,"*",i,"=",j*i,end=" ")
j+=1
print()
i+=1
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