Python题解
2024-12-03 16:10:42
发布于:北京
5阅读
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")
这里空空如也
有帮助,赞一个