namespace Test { internal class Program { static void Main(string[] args) { int[,] array = new int[2, 2] { { 1, 2 }, { 3, 4 } }; int count = 0; // 1번 foreach를 이용한 출력 foreach(int i in array) { Console.Write(i + " "); count++; if (count == 2) { Console.WriteLine(); count = 0; } } Console.WriteLine(); // 2번 for문을 이용한 출력 for(int i = 0; i < array.GetLength(0); i++) { for (int j = 0; j < array.GetLeng..