if else 嵌套学习笔记

import java.util.Scanner;
class TestIf3 {
	public static void main(String[] args) {
		
		Scanner s =new Scanner(System.in);
		System.out.println("请输入小明的期末成绩:(分)");
		int score=s.nextInt();
		if(score>100||score<0){
			System.out.println("你输入的数值有误");
		}else{
			if(score==100){
			System.out.println("奖励一辆BMW");
		
		}else if(score>=80&&score<=99){
			System.out.println("奖励一台iphone5s");

		}else if(score>=60&&score<=80){
			System.out.println("奖励一本参考书");
			
		}else{
			System.out.println("什么也没有");
		}
		}


		
	}
}


你可能感兴趣的:(import,public,期末成绩)