顺序结构和if结构

顺序结构

package com.tian.struct;

public class ShuXuDemo {
    public static void main(String[] args) {
        System.out.println("hello1");
        System.out.println("hello2");
        System.out.println("hello3");
        System.out.println("hello4");
        System.out.println("hello5");
    }
}

就是按着顺序输出

If结构

If单结构

package com.tian.struct;
//if 单选择结果
import java.util.Scanner;

public class IfDemo01 {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

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

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

        System.out.println("End");
        scanner.close();
    }
}

If双结构

package com.tian.struct;

import java.util.Scanner;

//if 双选择结构
public class IfDemo02 {
    public static void main(String[] args) {
        //考试分数大于60就是及格,小于60分就是不及格
        Scanner scanner = new Scanner(System.in);

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

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

        scanner.close();
    }
}

If多结构 If嵌套结构

package com.tian.struct;

import java.util.Scanner;

//if 多选择结构      if 嵌套结构
public class IfDemo03 {
    public static void main(String[] args) {
        //考试分数大于60就是及格,小于60分就是不及格
        Scanner scanner = new Scanner(System.in);

        /*
        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<100 && score>=80) {
            System.out.println("B");
        }else if (score<100 && score>=70){
            System.out.println("C");
        }else if (score<100 && score>=60){
            System.out.println("D");
        }else if (score<60 && score>=0){
            System.out.println("不及格");
        } else {
            System.out.println("成绩不合法");
        }

        scanner.close();

    }
}

嵌套

截图

posted @ 2025-07-12 13:00  A那就算了吧  阅读(5)  评论(0)    收藏  举报