GPT答: |
7i24.cn
|
print("欢迎来到面试程序!")
name = input("请输入您的姓名:")
age = int(input("请输入您的年龄:"))
score = int(input("请输入您的四级分数:"))
school = input("请输入您的毕业院校:")
if school == "天津科技大学":
print(f"{name},恭喜你被录取了!")
elif age <= 30 and score > 425:
print(f"{name},恭喜你被录取了!")
else:
print(f"很遗憾,{name},你未能通过面试。")
|