제목 : 06.3.2. 2차원 배열을 초기화하는 프로그램 2.
글번호:
|
|
47
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2003/03/31 오후 6:38:00
|
조회수:
|
|
6028
|
//2차원 배열을 초기화하는 프로그램 2
using System;
public class intArray
{
public static void Main()
{
int [,] intArray;
intArray = new int [,] {{1, 2, 3}, {4, 5, 6}};
for(int i = 0; i < 2; i++)
{
for(int j = 0; j < 3; j++)
{
Console.Write("{0} ", intArray[i, j]);
}
Console.Write("\n");
}
}
}