我有一个2D数组如下:
long[,] arr = new long[4,4] {{ 0,0 },{ 1,1,1 },{ 0,1 }};
我想以矩阵格式打印这个数组的值,如:
0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1
我该怎么做?
解决方法
您可以这样做(使用稍微修改的数组来显示它适用于非正方形数组):
long[,] arr = new long[5,4] { { 1,2,3,4 },{ 2,2 },{ 3,3 },{ 4,4,4 } }; int rowLength = arr.GetLength(0); int colLength = arr.GetLength(1); for (int i = 0; i < rowLength; i++) { for (int j = 0; j < colLength; j++) { Console.Write(string.Format("{0} ",arr[i,j])); } Console.Write(Environment.NewLine + Environment.NewLine); } Console.ReadLine();