遍历三维数组
Posted Hsin wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历三维数组相关的知识,希望对你有一定的参考价值。
package algorithm; //三维数组 public class ForEach { public static void main(String[] args) { int a[][][] = new int[][][]{ // 创建并初始化数组 { { 1, 2, 3 }, { 4, 5, 6 } }, { { 7, 8, 9 }, { 10, 11, 12 } }, { { 13, 14, 15 }, { 16, 17, 18 } } }; for (int[][] a1 : a) { // 遍历数组 for (int[] a2 : a1) { for (int a3 : a2) { System.out.print(a3 + "\t"); } System.out.println(); // 输出一维数组后换行 } } } }
以上是关于遍历三维数组的主要内容,如果未能解决你的问题,请参考以下文章
NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段