728x90
SMALL

// 2次元配列をnewで作成する

using System;

 

public class Lesson05

{

    public static void Main()

    {

int[] numberA = {0,1,2,3,4};

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

{

    Console.Write(numberA[i] + " ");

}

Console.WriteLine();

    }

}

 

//for로 출력할 때 배열의 길이 만큼 입력

//

// 2次元配列をnewで作成する

using System;

 

public class Lesson05

{

    public static void Main()

    {

int[] numberA = new int[10];

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

{

    Console.Write(numberA[i] + " ");

}

Console.WriteLine();

Console.WriteLine(numberA.Length);

    }

}

//

//

0 0 0 0 0 0 0 0 0 0

10

//C#에서는 배열을 만들기만 하고 값을 설정 안해도 초기값은 0으로 된다.

 

//

// 2次元配列をnewで作成する

using System;

 

public class Lesson05

{

    public static void Main()

    {

int[] numberA = new int[10];

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

{

    numberA[i] = i;

    Console.Write(numberA[i] + " ");

}

Console.WriteLine();

Console.WriteLine(numberA.Length);

    }

}

///

//

0 1 2 3 4 5 6 7 8 9

10

//

//

// 2次元配列をnewで作成する

using System;

 

public class Lesson05

{

    public static void Main()

    {

int[] numberA = new int[10]; //길이가 10인 배열

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

{

    numberA[i] = i;

    Console.Write(numberA[i] + " ");

}

Console.WriteLine();

Console.WriteLine(numberA.Length);

// 2차원 배열의 출력

int[][] numberB = new int[3][];

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

{

    numberB[i] = new int[4]; //길이가 4인 배열

   

}

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

{

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

    {

        numberB[i][j] = i*10 + j;

        Console.Write(numberB[i][j] + " ");

    }

   

    Console.WriteLine();

   

   

}

    }

}

 

////

0 1 2 3 4 5 6 7 8 9

10

0 1 2 3

10 11 12 13

20 21 22 23

////

 

//

// 2次元配列をnewで作成しよう

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];

        }

 

        foreach (int[] item in array)

        {

            foreach (int num in item)

            {

                Console.Write(num);

            }

            Console.WriteLine();

        }

    }

}

//

///

[2][3] 행렬을 만들고 출력

000

000

 

 

 

728x90

설정

트랙백

댓글