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

二维数组的遍历

时间:2020-04-12 18:44:45      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:stat   col   pre   style   str   color   hang   二维数组   数组   

遍历思想:首先使用循环遍历出二维数组中存储的每个一维数组,然后针对每个遍历到的一维数组使用循环遍历该一维数组中的元素

 

package ren.redface.demo;

/**
 * 
 * <p>Title: ArrayDemo.java</p>    
 * <p>Company: www.redface.ren</p>  
 * @author Alec Zhang  
 * @date 2020年4月12日
 */
public class ArrayDemo {
    
    public static void main(String[] args) {
        
        int[][] arr = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
        
        for(int y=0; y<arr.length; y++) {
            for (int x = 0; x < arr[y].length; x++) {
                System.out.print(arr[y][x] + "  ");
            }
            System.out.println();
        }

    }
}

 

二维数组的遍历

标签:stat   col   pre   style   str   color   hang   二维数组   数组   

原文地址:https://www.cnblogs.com/ooo888ooo/p/12686581.html

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