728x90
SMALL

// 2次元配列の要素に値を代入しよう

using System;

 

public class Lesson05

{

    public static void Main()

    {

        int[][] array = new int[2][];

        for (int i = 0; i < array.Length; i++)

        {

            array[i] = new int[3];

        }

 

        for (int i = 0; i < array.Length; i++)

        {

            for (int j = 0;  j < array[i].Length; j++)

            {

                //この下で、値を代入する

array[i][j] = 1;

                Console.Write(array[i][j]);

            }

            Console.WriteLine();

        }

    }

}

//

 

728x90

설정

트랙백

댓글