Commit fe32b69b by BellCodeEditor

save project

parent 41e5ce3b
Showing with 4 additions and 4 deletions
i = 5 # 行
j = 3 # 列
print(i,'*',j,'=',(i*j))
print(str(i)+"*"+str(j)+"="+str(i*j))
i = 1 # 行
for j in range(1,10):
print(str(i)+"*"+str(j)+"="+str(i*j),end=" ")
print(i,"*",j,"=",)
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