码迷,mamicode.com
首页 > 其他好文 > 详细

练习2014102205

时间:2014-10-22 09:52:03      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   2014   on   

/********************************************************************
@date     2014-10-22
@author   Tiger
@brief    语法
@details  C# 交错数组
********************************************************************/
using System;

class Demo
{
    static void Main()
    {
        int[][] arr = new int[3][];
        arr[0] = new int[2] { 1, 2 };
        arr[1] = new int[3] { 2, 3, 4 };
        arr[2] = new int[2] { 6, 7 };

        for (int i = 0; i < 3; ++i)
        {
            foreach (int elem in arr[i])
            {
                Console.Write(elem + " ");
            }
            Console.WriteLine();
        }
        Console.ReadLine();
    }
}

 

练习2014102205

标签:style   blog   color   ar   for   sp   div   2014   on   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/4042258.html

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