コード例 #1
0
ファイル: Program.cs プロジェクト: VicenteW/Quicksort
        static void Main()
        {
            int n;

            Console.Write("Ingrese la cantidad de numeros: ");
            n = Int32.Parse(Console.ReadLine());
            llenar b = new llenar(n);
        }
コード例 #2
0
        static void Main()
        {
            int n;

            Console.WriteLine("Metodo de Quick Sort");
            Console.Write("Cuantos longitud del vector: ");
            n = Int32.Parse(Console.ReadLine());
            llenar b = new llenar(n);
        }
コード例 #3
0
        static void Main(string[] args)
        {
            int n;

            Console.WriteLine("Metodo de Quick Sort");// inicio del programa
            Console.Write("Cuantos numeros desea ingresar ");
            n = Int32.Parse(Console.ReadLine());
            llenar b = new llenar(n);
        }