Commit 1a5ef0ff by BellCodeEditor

auto save

parent 027d3568
Showing with 11 additions and 0 deletions
for i in range(1,10):
for j in range(1,i+1):
print(j,"x",i,"=",j*i,end=" ")
print()
message = "诺依,周末一起去看动漫展吧!"
# 请对message进行遍历,取出所有元素
for i in message:
print(i)
a=int(input("长"))
b=int(input("宽"))
print("面积是:" + str((a*b)))
print("周长是: " + str((a+b)*2))
\ No newline at end of file
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