public static void llenar(Icoleccionable coleccion, FabricaDeComparables fabrica) { for (int i = 0; i < 20; i++) { coleccion.Agregar(fabrica.crearAleatorio()); Thread.Sleep(50); } }
public static void LlenarColeccion(Icoleccionable coleccion) { for (int i = 0; i < 20; i++) { Random buscarRamdom = new Random(); int valorRamdom = buscarRamdom.Next(100); Icomparable numero = new Numero(valorRamdom); coleccion.Agregar(numero); } }
public static void LlenarPersonas(Icoleccionable coleccion) { for (int i = 0; i < 20; i++) { Random rnd = new Random(); StringBuilder nombre = new StringBuilder(); char n; for (int b = 0; b < 8; b++) { double flt = rnd.NextDouble(); int shift = Convert.ToInt32(Math.Floor(25 * flt)); n = Convert.ToChar(shift + 65); nombre.Append(n); Thread.Sleep(50); } Persona p = new Persona(nombre.ToString(), rnd.Next(5000000, 50000000)); coleccion.Agregar(p); Thread.Sleep(50); } }
public static void LlenarAlumnos(Icoleccionable coleccion) { Random rnd = new Random(); StringBuilder nombre = new StringBuilder(); char n; for (int b = 0; b < 5; b++) { double flt = rnd.NextDouble(); int shift = Convert.ToInt32(Math.Floor(25 * flt)); n = Convert.ToChar(shift + 65); nombre.Append(n); Thread.Sleep(50); } for (int i = 0; i < 20; i++) { Icomparable alumno = new Alumno(nombre.ToString(), rnd.Next(5000000, 40000000), rnd.Next(2000), rnd.Next(11)); coleccion.Agregar(alumno); Thread.Sleep(50); } }