Commit 6693f992 by BellCodeEditor

save project

parent a8887a3e
a=input("脚长:")
b=(int(a)+10)/2
print(int(b))
\ No newline at end of file
m=input("总:")
a=int(m)//100
b=int(m)//10%10
c=int(m)//1%10
print(int(a),int(b),int(c))
\ No newline at end of file
a=input("妈")
b=input("爸")
c=input("性")
print((int(a)+int(b)+13*int(c))/2)
\ No newline at end of file
a=input("总:")
b=int(a) // 3600
c=int(a) // 60 % 60
d=int(a) % 60
print(b,c,d)
a=input("乌龟:")
b=100/int(a)
print(b)
\ No newline at end of file
score={'语文':91,'数学':88,'英语':85}
for i in score:
print(i)
\ No newline at end of file
a=input("长:")
b=input("短:")
c=int(a) * int(b)
print(c)
\ 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