제목 : 06.3.3. 2차원 배열을 초기화하는 프로그램 3
글번호:
|
|
48
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2003/03/31 오후 7:42:00
|
조회수:
|
|
5916
|
//2차원 배열을 초기화하는 프로그램 3
using System;
public class intArray
{
public static void Main()
{
int [,] intArray = {{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");
}
}
}