- public class Ch02
- {
- public static void main(String[] args)
- {
- Scanner s=new Scanner(System.in);
- float score;
- String str;
- System.out.print("Enter your score: ");
- score=s.nextFloat();
- if(score>=90 && score<=100)
- str="A";
- else if(score>=80 && score<=90)
- str="B";
- else if(score>=70 && score<=80)
- str="C";
- else if(score>=60 && score<=170)
- str="D";
- else if(score>=0 && score<=60)
- str="E";
- else
- str="Wrong enter!";
- System.out.println(str);
- }
- }
複製代碼 |