VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > Java教程 >
  • Java流程控制(学习狂神day02)

Java流程控制

1.用户交互Scanner

(1)实现程序和人的交互,java.util.Scanner,可以用Scanner类来获取用户的输入

​ 基本语法:Scanner sc = new Scanner(System.in);

(通过Scanner类的next()与nextLine()方法获取输入的字符串,在读取之前,我们一般用hasNext()与hasNextLine()判断是否还有输入的数据。

  • next():
    1. 一定读取到有效字符后才可以结束输入
    2. 对输入的有效字符之前遇到的空白,next()方法会自动将其去掉。
    3. 只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
    4. next()不能得到带有空格的字符串

image

  • nextLine():
    1. 以Enter为结束符,也就是说nextLine()方法返回的是输入回车之前的所有字符。
    2. 可以获得空白

image

不用if语句判断:

image


Scanner进阶使用

package com.kuang.scanner;

import java.util.Scanner;

public class Demo05 {
    public static void main(String[] args) {
        //我们可以输入多个数字,并求其总和与平均数,每输入一个数字用回车确认,通过输入非数字来结束并输出运算结果
        Scanner scanner = new Scanner(System.in);
        double sum = 0;  //和
        int m = 0;   //m个数
        System.out.println("请输入数据:");
        
        //通过循环判断是否还有输入,并在里面对每一次进行求和统计
        while (scanner.hasNextDouble()) {
            double x = scanner.nextDouble();
            m = m + 1;   //m++
            sum = sum + x;
            System.out.println("你输入了第" + m + "个数,当前的结果sum=" + sum);
        }
        System.out.println(m + "个数字和为:" + sum);
        System.out.println(m + "个数字的平均数是:" + (sum / m));

        scanner.close();
    }
}

2.顺序结构

​ Java的基本结构,依次执行,他是任何一个算法都离不开的基本结构。

3.选择结构

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

  • if双选择结构

  • if多选择结构

package com.kuang.struct;

import java.util.Scanner;

public class Demo03 {
    public static void main(String[] args) {
        //多条件判断,判断成绩等级
        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("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结构

  • switch多选择结构(break可选):判断一个变量与一系列值中某个值是否相等,每个值称为一个分支

    switch语句中的变量类型可以是byte、short、int或char,从JavaSE 7开始switch支持字符串String类型

    case穿透现象 :必须加上break;

package com.kuang.struct;

public class SwitchDemo01 {
    public static void main(String[] args) {
        char grade = 'C';
        //case穿透,switch匹配一个具体的值
        switch (grade) {
            case 'A':
                System.out.println("优秀");
                break;  //break可选,不加break,会发生穿透现象!!!
            case 'B':
                System.out.println("良好");
                break;
            case 'C':
                System.out.println("及格");
                break;
            default:
                System.out.println("未知等级");
        }
    }
}

​ 反编译 java---class(字节码文件)---反编译(idea)

​ 反编译,查看源码:hashCode(每一个对象都有其对应的hashCode,判断哈希值是不是相同)

image

4.循环结构

  • while循环
    • 只要布尔表达式为true,循环就会一直执行下去(死循环)
    • 大多数情况都需要一个表达式失效的方式来结束循环
    • 少部分情况需要一直循环,比如服务器的请求响应监听等
    • 尽量避免死循环,会造成程序性能或者程序卡死奔溃
package com.kuang.struct;

public class WhileDemo03 {
    public static void main(String[] args) {
        //计算1+2+3+4...+100=?
        //高斯
        int i = 0;
        int sum = 0;
        while (i <= 100) {
            sum = sum + i;
            i++;
        }
        System.out.println(sum);
    }
}
  • do...while循环:至少执行一次

image

  • for循环
package com.kuang.struct;

public class ForDemo01 {
    public static void main(String[] args) {
        for (int i=1; i<100; i++) {
            System.out.println(i);
        }

        /*
        关于for循环有以下几点说明:

        最先执行初始化步骤。可以声明一种类型,但可初始化一个或多个循环控制变量,也可以是空语句。
        然后,检测布尔表达式的值,如果为true,循环体被执行,如果为false,循环终止,继续执行后面的语句。
        执行一次循环后,更新循环控制变量(迭代因子控制着循环变量的增减)
        再次执行布尔表达式,循环执行上面的过程。
         */
        //死循环
        for (;;){

        }
    }
}

练习1

计算1-100之间所有奇数和偶数的和。

package com.kuang.struct;

public class ForDemo02 {
    public static void main(String[] args) {

        //计算0-100之间奇数和偶数的和
        int oddSum = 0;   //偶数
        int evenSum = 0;   //奇数
        for (int i = 0; i <= 100; i++) {
            if (i%2 != 0) {
                oddSum += i;
            } else{
                evenSum += i;
            }
        }
        System.out.println(oddSum);
        System.out.println(evenSum);
    }
}

练习2

用while或for循环输出1-1000之间能被5整除的数,并且一行输出3个数

package com.kuang.struct;

public class ForDemo03 {
    public static void main(String[] args) {
        
        //用while或for循环输出1-1000之间能被5整除的数,并且一行输出3个数
        for (int i = 1; i <= 1000; i++) {
            if (i%5==0) {
                System.out.print(i + "\t");
            }
            if (i%(5*3)==0){     //5、10、15,一行中的最后一个数能被15整除,则一行3个数,换行
                System.out.println();
            }
        }
        
        System.out.println();
        System.out.println("============================");

        //用while循环
        int a = 1;
        while (a<=1000) {
            a++;
            if (a%5==0) {
                System.out.print(a + "\t");
            }
            if (a%(5*3)==0) {
                System.out.println();
            }
        }
    }
}

练习3:九九乘法表

package com.kuang.struct;

/*
    1*1=1
    1*2=2	2*2=4
    1*3=3	2*3=6	3*3=9
    1*4=4	2*4=8	3*4=12	4*4=16
    1*5=5	2*5=10	3*5=15	4*5=20	5*5=25
    1*6=6	2*6=12	3*6=18	4*6=24	5*6=30	6*6=36
    1*7=7	2*7=14	3*7=21	4*7=28	5*7=35	6*7=42	7*7=49
    1*8=8	2*8=16	3*8=24	4*8=32	5*8=40	6*8=48	7*8=56	8*8=64
    1*9=9	2*9=18	3*9=27	4*9=36	5*9=45	6*9=54	7*9=63	8*9=72	9*9=81
 */

public class ForDemo04 {
    public static void main(String[] args) {
        //打印九九乘法表
        /*
            1.我们先打印第一列
            2.用一个循环抱起来
            3.去掉重复项
            4.调整样式
        */
        for (int i = 1; i <= 9; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print(j + "*" + i + "=" + (i * j) + "\t");
            }
            System.out.println();
        }

        /*for (int y = 1; y <= 9; y++) {
            for (int x = 1; x <= y; x++) {
                System.out.print(x + "*" + y + "=" + (y * x) + "\t");
            }
            System.out.println();
        }*/
    }
}

详细情况可用断点查看。

  • 增强for循环:java5引入了一种主要用于数组或集合的增强型for循环

    格式:

    for(声明语句:表达值){ //代码句子; }

    声明语句:声明新的局部变量,该变量的类型必须和数组元素类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等。

    表达式:表达式是要访问的数组名,或者是返回值为数组的方法。

package com.kuang.struct;

/*
    for(声明语句:表达值){
        //代码句子;
    }
 */
public class ForDemo05 {
    public static void main(String[] args) {
        int[] numbers = {10,20,30,40,50};

        for (int i=0; i<5; i++){
            System.out.println(numbers[i]);
        }

        System.out.println("==================");

        //遍历数组元素
        //增强for循环
        for (int x:numbers) {   //相当于把numbers数组中的元素全部赋值给了x
            System.out.println(x);
        }
    }
}

5.break&continue

  • [ ] break在任何循环语句的主体部分,均可用break控制循环的流程。break用于强行跳出循环,不执行循环语句中剩余的语句。
package com.kuang.struct;

public class BreakDemo {
    public static void main(String[] args) {
        int i = 0;
        while (i<100){
            i++;
            if (i%10==0){
                System.out.println();
                break;
            }
            System.out.println(i);
        }
    }
}
  • [ ] continue语句用在循环语句体中,用于终止某次循环过程,即跳出循环体中尚未执行的语句,接着进行下一次是否执行循环的判定。
package com.kuang.struct;

public class ContinueDemo {
    public static void main(String[] args) {
        int i = 0;
        while (i<100){
            i++;
            if (i%10==0){
                System.out.println(" ");
                continue;
            }
            System.out.print(i + " ");
        }
    }
}
  • [ ] goto关键字,带标签的break和continue,标签是指后面跟一个冒号的标识符,例如label:

    在java中唯一用到标签的地方是在循环语句之前,而在循环语句之前设置标签的唯一理由是:我们希望在其中嵌套另一个循环,由于break和continue关键字通常指中断当前循环,但若随标签使用,他们就会中断到存在标签的地方。

package com.kuang.struct;

public class LabelDemo {
    public static void main(String[] args) {
        //打印101-150之间的质数

        int count = 0;
        outer:for (int i=101; i<150; i++) {
            for (int j=2; j<i/2; j++){
                if (i%j ==0){
                    continue outer;
                }
            }
            System.out.print(i + " ");
        }
    }
}

6.练习

  • 打印三角形 5行
package com.kuang.struct;

public class TestDemo {
    public static void main(String[] args) {
        for (int i = 1; i <= 5; i++) {
            for (int j = 5; j >= i; j--) {
                System.out.print(" ");
            }
            for (int j = 1; j <= i; j++) {
                System.out.print("*");
            }
            for (int j = 1; j < i; j++) {
                System.out.print("*");
            }
            System.out.println();
        }
    }
}
 

Java流程控制

1.用户交互Scanner

(1)实现程序和人的交互,java.util.Scanner,可以用Scanner类来获取用户的输入

​ 基本语法:Scanner sc = new Scanner(System.in);

(通过Scanner类的next()与nextLine()方法获取输入的字符串,在读取之前,我们一般用hasNext()与hasNextLine()判断是否还有输入的数据。

  • next():
    1. 一定读取到有效字符后才可以结束输入
    2. 对输入的有效字符之前遇到的空白,next()方法会自动将其去掉。
    3. 只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
    4. next()不能得到带有空格的字符串

image

  • nextLine():
    1. 以Enter为结束符,也就是说nextLine()方法返回的是输入回车之前的所有字符。
    2. 可以获得空白

image

不用if语句判断:

image


Scanner进阶使用

package com.kuang.scanner;

import java.util.Scanner;

public class Demo05 {
    public static void main(String[] args) {
        //我们可以输入多个数字,并求其总和与平均数,每输入一个数字用回车确认,通过输入非数字来结束并输出运算结果
        Scanner scanner = new Scanner(System.in);
        double sum = 0;  //和
        int m = 0;   //m个数
        System.out.println("请输入数据:");
        
        //通过循环判断是否还有输入,并在里面对每一次进行求和统计
        while (scanner.hasNextDouble()) {
            double x = scanner.nextDouble();
            m = m + 1;   //m++
            sum = sum + x;
            System.out.println("你输入了第" + m + "个数,当前的结果sum=" + sum);
        }
        System.out.println(m + "个数字和为:" + sum);
        System.out.println(m + "个数字的平均数是:" + (sum / m));

        scanner.close();
    }
}

2.顺序结构

​ Java的基本结构,依次执行,他是任何一个算法都离不开的基本结构。

3.选择结构

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

  • if双选择结构

  • if多选择结构

package com.kuang.struct;

import java.util.Scanner;

public class Demo03 {
    public static void main(String[] args) {
        //多条件判断,判断成绩等级
        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("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结构

  • switch多选择结构(break可选):判断一个变量与一系列值中某个值是否相等,每个值称为一个分支

    switch语句中的变量类型可以是byte、short、int或char,从JavaSE 7开始switch支持字符串String类型

    case穿透现象 :必须加上break;

package com.kuang.struct;

public class SwitchDemo01 {
    public static void main(String[] args) {
        char grade = 'C';
        //case穿透,switch匹配一个具体的值
        switch (grade) {
            case 'A':
                System.out.println("优秀");
                break;  //break可选,不加break,会发生穿透现象!!!
            case 'B':
                System.out.println("良好");
                break;
            case 'C':
                System.out.println("及格");
                break;
            default:
                System.out.println("未知等级");
        }
    }
}

​ 反编译 java---class(字节码文件)---反编译(idea)

​ 反编译,查看源码:hashCode(每一个对象都有其对应的hashCode,判断哈希值是不是相同)

image

4.循环结构

  • while循环
    • 只要布尔表达式为true,循环就会一直执行下去(死循环)
    • 大多数情况都需要一个表达式失效的方式来结束循环
    • 少部分情况需要一直循环,比如服务器的请求响应监听等
    • 尽量避免死循环,会造成程序性能或者程序卡死奔溃
package com.kuang.struct;

public class WhileDemo03 {
    public static void main(String[] args) {
        //计算1+2+3+4...+100=?
        //高斯
        int i = 0;
        int sum = 0;
        while (i <= 100) {
            sum = sum + i;
            i++;
        }
        System.out.println(sum);
    }
}
  • do...while循环:至少执行一次

image

  • for循环
package com.kuang.struct;

public class ForDemo01 {
    public static void main(String[] args) {
        for (int i=1; i<100; i++) {
            System.out.println(i);
        }

        /*
        关于for循环有以下几点说明:

        最先执行初始化步骤。可以声明一种类型,但可初始化一个或多个循环控制变量,也可以是空语句。
        然后,检测布尔表达式的值,如果为true,循环体被执行,如果为false,循环终止,继续执行后面的语句。
        执行一次循环后,更新循环控制变量(迭代因子控制着循环变量的增减)
        再次执行布尔表达式,循环执行上面的过程。
         */
        //死循环
        for (;;){

        }
    }
}

练习1

计算1-100之间所有奇数和偶数的和。

package com.kuang.struct;

public class ForDemo02 {
    public static void main(String[] args) {

        //计算0-100之间奇数和偶数的和
        int oddSum = 0;   //偶数
        int evenSum = 0;   //奇数
        for (int i = 0; i <= 100; i++) {
            if (i%2 != 0) {
                oddSum += i;
            } else{
                evenSum += i;
            }
        }
        System.out.println(oddSum);
        System.out.println(evenSum);
    }
}

练习2

用while或for循环输出1-1000之间能被5整除的数,并且一行输出3个数

package com.kuang.struct;

public class ForDemo03 {
    public static void main(String[] args) {
        
        //用while或for循环输出1-1000之间能被5整除的数,并且一行输出3个数
        for (int i = 1; i <= 1000; i++) {
            if (i%5==0) {
                System.out.print(i + "\t");
            }
            if (i%(5*3)==0){     //5、10、15,一行中的最后一个数能被15整除,则一行3个数,换行
                System.out.println();
            }
        }
        
        System.out.println();
        System.out.println("============================");

        //用while循环
        int a = 1;
        while (a<=1000) {
            a++;
            if (a%5==0) {
                System.out.print(a + "\t");
            }
            if (a%(5*3)==0) {
                System.out.println();
            }
        }
    }
}

练习3:九九乘法表

package com.kuang.struct;

/*
    1*1=1
    1*2=2	2*2=4
    1*3=3	2*3=6	3*3=9
    1*4=4	2*4=8	3*4=12	4*4=16
    1*5=5	2*5=10	3*5=15	4*5=20	5*5=25
    1*6=6	2*6=12	3*6=18	4*6=24	5*6=30	6*6=36
    1*7=7	2*7=14	3*7=21	4*7=28	5*7=35	6*7=42	7*7=49
    1*8=8	2*8=16	3*8=24	4*8=32	5*8=40	6*8=48	7*8=56	8*8=64
    1*9=9	2*9=18	3*9=27	4*9=36	5*9=45	6*9=54	7*9=63	8*9=72	9*9=81
 */

public class ForDemo04 {
    public static void main(String[] args) {
        //打印九九乘法表
        /*
            1.我们先打印第一列
            2.用一个循环抱起来
            3.去掉重复项
            4.调整样式
        */
        for (int i = 1; i <= 9; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print(j + "*" + i + "=" + (i * j) + "\t");
            }
            System.out.println();
        }

        /*for (int y = 1; y <= 9; y++) {
            for (int x = 1; x <= y; x++) {
                System.out.print(x + "*" + y + "=" + (y * x) + "\t");
            }
            System.out.println();
        }*/
    }
}

详细情况可用断点查看。

  • 增强for循环:java5引入了一种主要用于数组或集合的增强型for循环

    格式:

    for(声明语句:表达值){ //代码句子; }

    声明语句:声明新的局部变量,该变量的类型必须和数组元素类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等。

    表达式:表达式是要访问的数组名,或者是返回值为数组的方法。

package com.kuang.struct;

/*
    for(声明语句:表达值){
        //代码句子;
    }
 */
public class ForDemo05 {
    public static void main(String[] args) {
        int[] numbers = {10,20,30,40,50};

        for (int i=0; i<5; i++){
            System.out.println(numbers[i]);
        }

        System.out.println("==================");

        //遍历数组元素
        //增强for循环
        for (int x:numbers) {   //相当于把numbers数组中的元素全部赋值给了x
            System.out.println(x);
        }
    }
}

5.break&continue

  • [ ] break在任何循环语句的主体部分,均可用break控制循环的流程。break用于强行跳出循环,不执行循环语句中剩余的语句。
package com.kuang.struct;

public class BreakDemo {
    public static void main(String[] args) {
        int i = 0;
        while (i<100){
            i++;
            if (i%10==0){
                System.out.println();
                break;
            }
            System.out.println(i);
        }
    }
}
  • [ ] continue语句用在循环语句体中,用于终止某次循环过程,即跳出循环体中尚未执行的语句,接着进行下一次是否执行循环的判定。
package com.kuang.struct;

public class ContinueDemo {
    public static void main(String[] args) {
        int i = 0;
        while (i<100){
            i++;
            if (i%10==0){
                System.out.println(" ");
                continue;
            }
            System.out.print(i + " ");
        }
    }
}
  • [ ] goto关键字,带标签的break和continue,标签是指后面跟一个冒号的标识符,例如label:

    在java中唯一用到标签的地方是在循环语句之前,而在循环语句之前设置标签的唯一理由是:我们希望在其中嵌套另一个循环,由于break和continue关键字通常指中断当前循环,但若随标签使用,他们就会中断到存在标签的地方。

package com.kuang.struct;

public class LabelDemo {
    public static void main(String[] args) {
        //打印101-150之间的质数

        int count = 0;
        outer:for (int i=101; i<150; i++) {
            for (int j=2; j<i/2; j++){
                if (i%j ==0){
                    continue outer;
                }
            }
            System.out.print(i + " ");
        }
    }
}

6.练习

  • 打印三角形 5行
package com.kuang.struct;

public class TestDemo {
    public static void main(String[] args) {
        for (int i = 1; i <= 5; i++) {
            for (int j = 5; j >= i; j--) {
                System.out.print(" ");
            }
            for (int j = 1; j <= i; j++) {
                System.out.print("*");
            }
            for (int j = 1; j < i; j++) {
                System.out.print("*");
            }
            System.out.println();
        }
    }
} 
 
来源:https://www.cnblogs.com/sxstudy/p/15363101.html


相关教程