【if选择结构】

public class IfDemo01 {
    public static void main(String[] args) {
        Scanner scanner =new Scanner (System.in);
        //if单选择结构

        System.out.println("请输入一个内容:");
        String s = scanner.nextLine();

        //equalsP:判断字符串是否相等
        if (s .equals("Hello")){
            System.out.println(s);
        }

        System.out.println("hh");


Scanner scanner=new Scanner(System.in);

System.out.println("请输入成绩");
int score = scanner.nextInt();

if (score>60){
    System.out.println("及格");
}else {
    System.out.println("不及格");
}

Scanner scanner = new Scanner(System.in);

/*if多选择结构
 if 语句至少多有一个else 语句,else 语句在所有的else if 语句之后。
 if 语句可以有若干个else if 语句 ,它们必须在 else 语句之后。
 一旦其中一个 else if 语句检测为 true ,其他的 else if 以及 else 语句都将跳过执行。
 */

System.out.println("请输入成绩");
int score = scanner.nextInt();

if (score == 100) {
    System.out.println("恭喜满分");
} else if (score < 100 && score >= 90) {
    System.out.println("A级");
} else if (score < 90 && score >= 80) {
    System.out.println("B级");
} else if (score < 80 && score >= 70) {
    System.out.println("C级");
} else if (score < 70 && score >= 60) {
    System.out.println("D级");
} else if (score < 60 && score >= 0) {
    System.out.println("不及格");
} else {
    System.out.println("成绩不合法");
}


        scanner.close();
    }
}
上一篇:抛出异常和ifelse在模块化设计上的区别


下一篇:leetcode12. 整数转罗马数字(中等)