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

遍历数组之多维数组!

时间:2015-08-10 23:45:46      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace _99
{
    class Program
    {
        static void Main(string[] args)
        {
            int[, ,] hh = new int[2, 3, 3] { { { 4, 2, 3 }, { 4, 3, 2 }, {4,5, 43, } }, { { 12, 3, 32 }, { 3, 23, 23 }, { 13, 33, 3 } } };
        foreach (int m in hh)
            Console.WriteLine ("遍历三维数组为" + m);
Console.Read();
     }
    }
}

 

遍历数组之多维数组!

标签:

原文地址:http://www.cnblogs.com/ROCKyou/p/4719326.html

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