题目详情
单选题 score = int(input("Please input your score:")) if score >= 90: print("Great!") elif score >= 75 and score < 90: print("Good!") elif score >= 60 and score < 75: print("Passed!") else: print("Failed!") 提问:当输入75时,答案应该是什么

学科:Python语言程序设计
时间:2023-06-02 14:45:32
