嵌套循环概念

Posted keepcalmandneversaynever

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了嵌套循环概念相关的知识,希望对你有一定的参考价值。

技术分享图片
嵌套循环:循环体中还可以声明循环,相当于内层循环的整体充当外层循环的循环体
例:
for(;;){
for(;;){

}
}
或者
while(){
for(;;){

}
}
题目:输出四排*,要求用嵌套循环
*
**
***
****

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

        for (int i=0;i<4;i++){
            for (int j=0;j<i+1;j++){
                System.out.print("*");
            }
            System.out.println();
        }
   
   }
}

技术分享图片



****
***
**
*

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

技术分享图片



*
**
***
****
***
**
*

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

        for (int i=0;i<4;i++){//上半部分
            for (int j=0;j<i+1;j++) {
                System.out.print("*");
            }
            System.out.println();
        }
        for (int i=0;i<3;i++){//下半部分
            for (int z=0;z<3-i;z++){
                System.out.print("*");
            }
            System.out.println();
    }
   }
}

技术分享图片


    *

   * *

  * * *

 * * * * 

* * * * *

 * * * *

  * * *

   * * 

    *

public class V{
    public static void main(String[] args){
        for (int i=0;i<5;i++){//上半部分
           for (int j=0;j<4-i;j++){
               System.out.print(" ");
           }
           for (int z=0;z<i+1;z++){
               System.out.print("* ");
           }
           System.out.println();
       }
        for (int i=0;i<4;i++){//下半部分
           for (int j=0;j<i+1;j++){
               System.out.print(" ");
           }
           for (int z=0;z<4-i;z++){
               System.out.print("* ");
           }
           System.out.println();
       }
    }
}

技术分享图片



题目:九九乘法表

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

技术分享图片


题目:1-100之间所有质数

public class V{
    public static void main(String[] args){
        boolean flag=false;
        for (int i=2;i<=100;i++){
            for (int j=2;j<i;j++){
                if (i%j==0){
                    flag=true;
                }
            }
            if (flag==false){
                System.out.println(i);
            }
            flag=false;
        }
    }
}

技术分享图片
































以上是关于嵌套循环概念的主要内容,如果未能解决你的问题,请参考以下文章

理解python中嵌套while循环中的概念的问题

使用嵌套片段和动画对象

将片段添加到片段中(嵌套片段)

Android 动画嵌套片段

00015_循环嵌套

循环嵌套