Python题解
2025-11-13 18:51:34
发布于:北京
9阅读
0回复
0点赞
按照题意分类模拟即可。
n = int(input())
for i in range(n):
s = int(input())
if s>=0 and s<60:
print("fail")
elif s>=60 and s<80:
print("pass")
elif s>=80 and s<=100:
print("excellent")
else:
print("wa")
这里空空如也





有帮助,赞一个