python编程入门7-1~7-3习题
程序员文章站
2022-11-30 14:26:36
7-1:汽车租赁:编写一个程序,询问用户要租赁什么样的汽车,并打印一条消息。car=input("What's car are you want?\n")print("Let me see if I can find you a Subaru.")7-2餐馆订位:编写一个程序,询问用户有多少人用餐。如果超过9人,就打印一条消息,指出没有空桌。number=input("How many customers will come?\n")number= int(number)if number...
7-1:汽车租赁:编写一个程序,询问用户要租赁什么样的汽车,并打印一条消息。
car=input("What's car are you want?\n")
print("Let me see if I can find you a Subaru.")
7-2餐馆订位:编写一个程序,询问用户有多少人用餐。如果超过9人,就打印一条消息,指出没有空桌。
number=input("How many customers will come?\n")
number= int(number)
if number<8:
print("We have enough space.")
else:
print("Sorry,we don't have enough space.")
7-3 10的整数倍:让用户输入一个数字,并指出这个数字是否是10的整数倍。
number= int(input("Give me a number."))
if number/10==0:
print("这个数是10的整数倍。")
else:
print("这个数不是10的整数倍。")
本文地址:https://blog.csdn.net/qq_39969508/article/details/107162080