标签: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(); } }
标签:style blog color ar for sp div 2014 on
原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/4042258.html