ریختن اعضای یک آرایه دوبعدی در آرایه ی یک بعدی ( به صورت سطری)
namespace ConsoleApplication1 { class Program { // Created By Mohammadreza Bitarafan // static void Main(string[] args) { Console.Title = "Ostad Akhlaghi"; Console.Write("Enter Row or Column:"); int row = Convert.ToInt32(Console.ReadLine()); int column = row; int[,] matrix = new int[row, column]; int k = 0; int[] array = new int[row * column]; Console.WriteLine("Enter Your Numbers:"); for (int i = 0, r = 3; i < matrix.GetLength(0); r += 3, i++) { for (int j = 0, l = 10; j < matrix.GetLength(1); l += 5, j++) { Console.SetCursorPosition(l, r); matrix[i, j] = Convert.ToInt32(Console.ReadLine()); } } for (int i = 0; i < matrix.GetLength(0); i++) { for (int j = 0; j < matrix.GetLength(1); j++) { array[k] = matrix[i, j]; Console.Write(" " + array[k]); k++; } } Console.ReadKey(); } } } |