本文介绍了使用for循环填充锯齿状数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好我想在C#中使用for循环填充锯齿状数组。在这个锯齿状数组中,我们将有768行,每行有9个元素。我想用随机数填充每一行。例如我的第一行将是



row 1 12 18 19 158 147 145 147 155 15

row2 14 17 18 15 19 16 114 15 4



谢谢。

Hi I want to fill jagged array using for loop in C#.In this jagged array we would have 768 rows with 9 elements in each row. I want to fill each row with random number.for example my first row would be

row 1 12 18 19 158 147 145 147 155 15
row2 14 17 18 15 19 16 114 15 4

thank you.

推荐答案


public static void Main(string[] atgs)
       {
           //row 1 12 18 19 158 147 145 147 155 15
           //row2 14 17 18 15 19 16 114 15 4

           const int rows = 768;
           const int columns = 9;
           int[,] ai = new int[rows, columns];

           Random r = new Random();

           for (int i = 0; i < rows; ++i)
           {
               for (int j = 0; j < columns; ++j)
               {
                   ai[i, j] = r.Next(0, 1000);
               }
           }


       }



这篇关于使用for循环填充锯齿状数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 14:14