题解 | #游乐园的门票#
游乐园的门票
https://www.nowcoder.com/practice/29cc8d49d7bf4197a1cdbfcee340f846
while True:
print("Please tell me your height!\nEnter 'quit' to end the program.")
a = input()
if str(a) == 'quit':
break
elif float(a) <= 1.0:
print('Your admission cost is 0 yuan.')
elif float(a) > 1.0 and float(a) <= 1.2:
print('Your admission cost is 80 yuan.')
elif float(a) > 1.2:
print('Your admission cost is 150 yuan.')
print("Please tell me your height!\nEnter 'quit' to end the program.")
a = input()
if str(a) == 'quit':
break
elif float(a) <= 1.0:
print('Your admission cost is 0 yuan.')
elif float(a) > 1.0 and float(a) <= 1.2:
print('Your admission cost is 80 yuan.')
elif float(a) > 1.2:
print('Your admission cost is 150 yuan.')