Problem2883--成绩等级判断

2883: 成绩等级判断

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

输入一个分数,将成绩转换为 优、良、中、差 。具体要求如下: 

成绩 >= 90 :优秀; 成绩 >= 80 :良好; 成绩 >= 60 :中等; 成绩 < 60 :差

Sample Input Copy

90

Sample Output Copy

优秀

Source/Category