![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FMFeVI%2FbtqLlBIFFBa%2FsBJFjpO1oGZHzk7gtxeqTK%2Fimg.jpg)
제작/기타 프로그램
[C#] 행렬 계산기 (4) - 이차원 배열로 더 간단하게 표현
코드 : using System; namespace matrixNamespace { class Matrix { int row; int column; static int[][] matrix; public Matrix() { Console.WriteLine("Matrix Create..."); Console.Write("input the Row, Column (ex. 3 3) : "); string input = Console.ReadLine(); string[] row_column = input.Split(' '); this.row = Convert.ToInt32(row_column[0]); this.column = Convert.ToInt32(row_column[1]); matrix = new int[r..