数组的遍历

Posted yang-1yang

tags:

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

一、一维数组的遍历:

public class Demo{

    public  static  void  main(String[] args){

      int[] array=new int[10];//定义一个数组

    Scanner scanner=new Scanner(System.in);

     for(int i=0;i<array.length;i++){

       array[i]=scanner.nextInt();//动态初始化数组

        }

    System.out.println("数组的元素是:");

    for(int i=0;i<array.length;i++){

          System.out.println(array[i]);     

         }

     }

}

二、二维数组的遍历

   public class Demo{

      public  static  void main(S tring[] args){

          int[][] array=new int[3][3];//定义一个二维数组

          Scannery scanner=new Scanner(System.in);

         for(int i=0;i<array.length;i++ {

              for(int j=0;j<array[i].length;j++){

                  array[i][j]=scanner.nextInt(); //动态初始化数组

}  

      for(int i=0;i<array.length;i++){

          for(int j=0;j<array[j].length;j++){//输出二维数组的数据

             System.out.print(array[i][j]); 

}    

   system.out.println();

}

 

}

}   

}

以上是关于数组的遍历的主要内容,如果未能解决你的问题,请参考以下文章

php foreach只能遍历数组么

thymeleaf怎么遍历数组

如何用foreach做数组个数的遍历

Java 如何遍历数组里面的数据?

在VBA中如何遍历数组中的每个元素?

js遍历数组some()方法