Project

General

Profile

Files » day1练习代码.py

UserName LastName, 01/13/2025 09:58 AM

 
score=int(input("用户输入一个分数:"))
if 90<=score<=100:
print("A")
elif 60<=score<90:
print("B")
elif 1<=score<60:
print("C")
else:
print("超出范围")
(59-59/437)