Commit 5e62c766 by BellCodeEditor

auto save

parent 04560dad
Showing with 48 additions and 0 deletions
a=int(input("本次数学成绩:"))
if a<60:
print("男女混合双打")
elif a<70:
print("男打")
elif a<80:
print("女打")
elif a<90:
print("棒棒糖")
elif a<100:
print("火锅")
elif a==100:
print("吃屎")
x=a
print("数学成绩",x)
a=0
n=1
while n<=100:
a=a+n
n=n+1
print("1+2+...+100=",a)
\ No newline at end of file
print(i,"*",j,"=",i*j,end=" ")
\ No newline at end of file
for i in range(1,10):
for j in range(1,i+1):
print(i,"*",j,"=",i*j,end="||")
print()
\ 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