码迷,mamicode.com
首页 > 编程语言 > 详细

Java流程控制1(Scanner 顺序结构,选择结构)

时间:2021-02-19 13:46:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:stat   占用   def   close   自动   exp   print   else   rgs   

Java流程控制

用户交互Scanner

  • 我们可以通过Scanner类获取用户的输入
  • 基本语法:
Scanner s = new Scanner(System.in)
  • 通过Scanner类的next()与nextLine()方法获取输入的字符串,在读取前我们一般需要使用hasNext()与hasNextLine()判断是否还有输入的数据。
hasNext
    public static void main(String[] args) {

        //创建一个扫描器对象,用于接受键盘数据
        Scanner scanner = new Scanner(System.in);

        System.out.println("使用next方法接收:");//程序与等待用户输入

        //判断用户有没有输入字符串
        if (scanner.hasNext()){
            //使用next方法接收
            String str = scanner.next();
            System.out.println("输入的内容为:"+ str);
            //如果输入的内容有空格,会中断内容,只输出空格前的内容

        }

        scanner.close();//凡是IO流的类如果不关闭会一直占用资源,要养成好习惯用完就关闭


    }
hasNextLine()
    public static void main(String[] args) {
        //从键盘接受数据
        Scanner scanner = new Scanner(System.in);//创建了等号右边,快速创建左边  Ctrl+Alt+V

        System.out.println("使用nextLine方法接收:");

        //判断是否还有输入
        if (scanner.hasNextLine()){
            String str = scanner.nextLine();
            System.out.println("输出的内容为:"+str);
            //此时有空格不会被打断
        }

        scanner.close();

    }
  • next()
    • 一定要读取到有效字符才可以结束输入
    • 对输入有效字符之前的空白,next()方法会自动将其去掉
    • 只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符
    • next()不能得到带有空格的字符串
  • nextLine()
    • 以Enter为结束符,也就是说nextLine()方法返回的是输入回车之前的所有字符
    • 可以获得空白
   
            //从键盘接收数据
        int i = 0;
        float f = 0.0f;

        System.out.println("请输入整数:");

        //如果...那么
        if (scanner.hasNextInt()){
            i = scanner.nextInt();
            System.out.println("整数数据:"+i);
        }else{
            System.out.println("输入的不是整数数据!");
        }

        System.out.println("请输入小数:");

        //如果...那么
        if (scanner.hasNextFloat()){
            f = scanner.nextFloat();
            System.out.println("小数数据:"+f);
        }else{
            System.out.println("输入的不是小数数据!");
        }

        
        scanner.close();

顺序结构

  • JAVA的基本结构就是顺序结构,除非特别指明,否则就按照顺序一句一句执行
  • 顺序结构是最简单的算法结构
  • 语句与语句之间,框与框之间是按照从上到下的顺序进行的,它是由若干个依次执行的处理步骤组成的,它是任何一个算法都离不开的基本算法结构

选择结构

  • if单选择结构
if(布尔表达式){
    //如果布尔表达式为true将执行语句
}

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双选择结构
if(布尔表达式){
    //如果布尔表达式的值为true
}else{
    //如果布尔表达式的值为false
}

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(布尔表达式1){
    //如果布尔表达式1的值为true执行代码
}else if(布尔表达式2){
    //如果布尔表达式2的值为true执行代码
}else if(布尔表达式3){
    //如果布尔表达式3的值为true执行代码
}else {
    //如果以上布尔表达式都不为true执行代码
}

 /*
        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();
  • 嵌套的if结构
if (布尔表达式1){
    //如果布尔表达式1为true 执行代码
    if(布尔表达式2){
        //如果布尔表达式2为true 执行代码
    }
}
  • switch多选择结构

  • 多选择结构还有一个实现方式就是switch case语句

  • switch case语句判断一个变量与一系列值中某个值是否相等,每个值称为一个分支

  • switch语句中的变量类型可以是

    • byte、short、int或者char
    • 从Java SE7 开始
    • switch 支持字符串String类型了
    • 同时case标签必须为字符串常量或字面量
switch(expression){
    case value:
        //语句
        break;//可选
    case value:
        //可选
        break;//可选
        //你可以有任意数量的case语句
    default://可选
        //语句
}

//case穿透        switch匹配一个具体的值
        char grade = ‘C‘;

        switch (grade){
            case ‘A‘:
                System.out.println("优秀");
                break;//可选
            case ‘B‘:
                System.out.println("良好");
                break;//可选
            case ‘C‘:
                System.out.println("及格");
                break;//可选
            case ‘D‘:
                System.out.println("再接再厉");
                break;//可选
            case ‘E‘:
                System.out.println("挂科");
                break;//可选
            default:
                System.out.println("未知等级");
                break;//可选

Java流程控制1(Scanner 顺序结构,选择结构)

标签:stat   占用   def   close   自动   exp   print   else   rgs   

原文地址:https://www.cnblogs.com/tqdm/p/14412718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!