博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
遍历三维数组
阅读量:5124 次
发布时间:2019-06-13

本文共 1190 字,大约阅读时间需要 3 分钟。

1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4  5 namespace 遍历三维数组 6 { 7     class Program 8     { 9         static void Main(string[] args)10         {11            12 13             int[, ,] szA = new int[2,3,4]{14                                        {
{
0,1,2,3},15 {
4,5,6,7},16 {
8,9,10,11}},17 {
{
12,13,14,15},18 {
16,17,18,19},19 {
20,21,22,23}}20 };21 22 for (int x = 0; x <2; x++)23 24 25 for (int y = 0; y < 3; y++)26 27 for (int z = 0; z < 4; z++) 28 {29 Console.WriteLine("数组=" + szA[x, y,z]);30 31 33 }34 35 36 //foreach(int i in szA)37 38 Console.ReadLine();39 40 }41 }42 }

 

转载于:https://www.cnblogs.com/zxm1002/p/4719215.html

你可能感兴趣的文章
前端监控
查看>>
clipboard.js使用方法
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>