namespace algoritmo_por_seleccion2 { class Program { static void Main(string[] args) { Console.Write(“Hola, cuantos numeros seran?:”); int n = int.Parse(Console.ReadLine()); llenar b = new llenar(n); } } class llenar { int[] arreglo; int h; public llenar(int n) { h = n; arreglo = new int[h]; Console.WriteLine(“Escribe los numeros que iran dentro del array:”); for (int aRead more