美文网首页
if的多种选择

if的多种选择

作者: 哈迪斯Java | 来源:发表于2021-09-08 11:58 被阅读0次

    package Structure;

    import java.util.Scanner;

    public class IfDemon3 {
    public static void main(String[] args) {
    //考试成绩大于60为几及格,否则就是不及格
    Scanner scanner = new Scanner(System.in);
    System.out.println("请输入成绩:");
    int score = scanner.nextInt();

        if (score == 100) {
            System.out.println("恭喜满分");
        } else if (score < 100 && score >= 90) {
            System.out.println("恭喜优秀");
        } else if (score < 90 && score >= 80) {
            System.out.println("恭喜优秀");
        } else if (score < 80 && score >= 60) {
            System.out.println("良好,继续加油");
        } else if (score < 60 && score >= 0) {
            System.out.println("不及格");
        } else {
            System.out.println("成绩无效");
        }
    }
    

    }

    相关文章

      网友评论

          本文标题:if的多种选择

          本文链接:https://www.haomeiwen.com/subject/otguwltx.html