package test;
public static void main(String[] args) {
// TODO Auto-generated method stub
//鍵盤錄入小明成績;
Scanner sc = new Scanner(System.in);//這個警告不影響運作 後面會解釋
System.out.println("請輸入小明的成績");
int score = sc.nextInt();
//0到100合理;
if(score>0 && score<=100) {
//成績不同,獎勵不同。
if(score>=95) {
System.out.println("獎勵一輛自行車");
}else if(score>=90 && score<95) {
System.out.println("獎勵遊樂園玩一天");
}else if (score>=80 && score<90) {
System.out.println("獎勵變形金剛一個");
}else if (score<80) {
System.out.println("獎勵七匹狼打一個小時");
}
}else {
System.out.println("目前錄入不合法");
}
}