zoukankan      html  css  js  c++  java
  • java流程控制04if选择结构

    package com.Leo.struct;

    import java.util.Scanner;

    public class IfDemo02 {
    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();
    }

    package com.Leo.struct;

    import java.util.Scanner;

    public class IfDemo03 {
    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();
    }

    package com.Leo.struct;


    import java.util.Scanner;

    public class IfDemo04 {
    //成绩大于60分及格,小于60分不及格
    public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);

    /*
    if 语句至多有1个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();
    }




    }





  • 相关阅读:
    前端性能优化
    web缓存
    js实现数组去重并且显示重复的元素和索引值
    前端面试简单整理
    js记录重复字母的个数
    js数组快速排序
    sql数据库链接
    w3cschool -css
    w3cschool -html
    A*算法在栅格地图上的路径搜索(python实现)
  • 原文地址:https://www.cnblogs.com/yuanzhihui/p/14864788.html
Copyright © 2011-2022 走看看