Exemplo n.º 1
0
 private static void sortionMenu(int rows, int columns, int [,] matrix)
 {
     if (matrix == null)
     {
         Output.WriteLine("Massive is empty");
     }
     else
     {
         Output.WriteLine("Set param for sorting: \n1 - From min to max\n2 - From max to min");
         int choise = Input.Integer();
         Output.WriteMass(rows, columns, Calculating.Sort(rows, columns, matrix, choise));
     }
 }