1. 程式人生 > >輸入一個分數,顯示相對應的等級

輸入一個分數,顯示相對應的等級


package p1;
import java.util.Scanner;
/**
    auther:xiuran-hua
    function:輸入一個分數,顯示相對應的等級
*/
public class A{
    public static void main(String args[]){
        System.out.println("請輸入一個分數");
        
        Scanner s = new Scanner(System.in);
        Double score = s.nextDouble();
        
        if(score >= 60 && score<=70){
            System.out.println(" 還湊活");
        }else if(score > 70&& score <90){
            System.out.println("良好");
        }else if(score>=90&& score<=100){
            System.out.println("優秀啊");
        }else if(score>100){
            System.out.println("輸入有誤,請重新輸入");
        }else{
            System.out.println("不及格,好好學習吧");
        }
    
    }
 

}