c# – 以矩阵格式打印2D数组

前端之家收集整理的这篇文章主要介绍了c# – 以矩阵格式打印2D数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个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();
原文链接:https://www.f2er.com/csharp/91190.html

猜你在找的C#相关文章