Commit d37d536c by BellCodeEditor

save project

parent 836cba06
Showing with 25 additions and 0 deletions
import turtle
for i in range(4):
turtle.left(90)
turtle.forward(100)
\ No newline at end of file
name=input("你今年多大了?")
print("我今年"+name+"岁了")
\ No newline at end of file
for i in range(1,10):
for i in range(1,i+1):
print(j,'*',i,'=',(j*i),end=" ")
print()
\ No newline at end of file
a=[12,23,45,44,63,93,48]
s=a[0]
index=0
i=1
while i<len(a):
if a[i]>s:
s=a[i]
index=i
i=i+1
print(s)
print(index)
\ 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