public static void Exercitiul20() { Console.WriteLine(" 20. Sorting an Array using Selection Sort"); int lungime, valMax; Metoda.PrelParamInt(out lungime, out valMax); int[] arrNesortat = new int[lungime]; arrNesortat = Metoda.GenIntArray(lungime, valMax); Metoda.AfisareArr(arrNesortat); Metoda.SortareIntArray(arrNesortat); Metoda.AfisareArr(arrNesortat); }