if 循环

age_of_princal = 56
guess_age = int(input(">>:")) if guess_age == age_of_princal:
print("Yes,you got it.")
else:
print("No,it's wrong.")
age_of_princal = 56
guess_age = int(input(">>:")) if guess_age == age_of_princal:
print("Yes,you got it.")
elif guess_age > age_of_princal:
print("You shoud try samller.")
else:
print("You try bigger.")
score = int(input("score:"))

if score > 90:
print("A")
elif score > 80:
print("B")
elif score > 60:
print("C")
else:
print("D")

上一篇:中国剩余定理&Lucas定理&按位与——hdu 5446


下一篇:火狐mozilla官方ftp站点获取旧版本火狐的下载地址