import java.util.Scanner;
class test
{
public static void main (String[] args)
{
Scanner scn=new Scanner(System.in);
int cj=scn.nextInt();
if(cj>=90 && cj<=100){
System.out.println("你的成绩为:"+cj+"等级分为优");
}else if(cj>=80 && cj<90){
System.out.println("你的成绩为:"+cj+"等级分为良好");
}else if(cj>=70 && cj<80){
System.out.println("你的成绩为:"+cj+"等级分为良");
}else if(cj>=60 && cj<70){
System.out.println("你的成绩为:"+cj+"等级分为及格");
}else if(cj>=0 && cj<60){
System.out.println("你的成绩为:"+cj+"等级分为不及格");
}else{
System.out.println("你输入的分数有问题,请从新输入");
}
}
}
12-01
1633