ejercicios sin terminar
@@ -1,8 +0,0 @@
|
||||
package iesthiar;
|
||||
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
}
|
||||
}
|
||||
47
src/main/java/iesthiar/Ejercicio_B1.java
Normal file
@@ -0,0 +1,47 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Ejercicio_B1 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
// Declaramos e inicializamos las variables
|
||||
int maximo = Integer.MIN_VALUE;
|
||||
int minimo = Integer.MAX_VALUE;
|
||||
int numero;
|
||||
|
||||
// try-for-resources
|
||||
try (Scanner lector=new Scanner(Ejercicio_B1.class.getResourceAsStream("Documentos/numeros.txt"))){
|
||||
// Alternatica a try-for-res
|
||||
// File f = new File("Documentos/numeros.txt");
|
||||
// Scanner lector = new Scanner(f);
|
||||
|
||||
// Mientras queden elementos vamos leyendo los enteros
|
||||
while (lector.hasNext()) {
|
||||
numero = lector.nextInt();
|
||||
|
||||
// Comprobamos si numero leido es mayor que máximo
|
||||
if (numero > maximo) {
|
||||
// Asignamos nuevo máximo
|
||||
maximo = numero;
|
||||
}
|
||||
|
||||
// Comprobamos si numero leido es menor que mínimo
|
||||
if (numero < minimo) {
|
||||
// Asignamos nuevo mímino
|
||||
minimo = numero;
|
||||
}
|
||||
}
|
||||
|
||||
// Cerramos el Scanner. Con t-f-r no hace falta
|
||||
// lector.close();
|
||||
|
||||
// Mostramos por pantalla el valor máximo y mínimo
|
||||
System.out.println("El valor máximo es " + maximo);
|
||||
System.out.println("El valor mínimo es " + minimo);
|
||||
|
||||
} catch (Exception e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
68
src/main/java/iesthiar/Ejercicio_B2.java
Normal file
@@ -0,0 +1,68 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Ejercicio_B2 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
try (Scanner lector=new Scanner(Ejercicio_B1.class.getResourceAsStream("Documentos/alumnos_notas.txt"))){
|
||||
// ArrayList de alumnos
|
||||
ArrayList<String> alumnos = new ArrayList<>();
|
||||
|
||||
// Contador de número de líneas
|
||||
int nLinea = 1;
|
||||
|
||||
// Recorremos el fichero. Para cada línea (alumno)
|
||||
while (lector.hasNextLine()) {
|
||||
// Troceamos la línea en palabras y cogemos la info del alumno
|
||||
String[] trozosLinea = (lector.nextLine()).split(" ");
|
||||
|
||||
// Si la línea no tiene el formato correcto la saltamos
|
||||
if (trozosLinea.length < 2) {
|
||||
System.err.println("Linea " + nLinea + " mal formateada. La ignoramos.");
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cogemos la info del alumnos
|
||||
String nombre = trozosLinea[0];
|
||||
String apellido = trozosLinea[1];
|
||||
|
||||
// Calculamos su nota media
|
||||
int suma = 0;
|
||||
for (int j = 2; j < trozosLinea.length; j++) {
|
||||
suma += Integer.valueOf(trozosLinea[j]);
|
||||
}
|
||||
double media = (double) (suma) / (double) (trozosLinea.length - 2);
|
||||
|
||||
// Creamos una cadena con nota media, nombre y apellido y la añadimos al ArrayList
|
||||
alumnos.add(String.format("%.2f %s", media, nombre + " " + apellido));
|
||||
|
||||
// Actualizamos contador de líneas
|
||||
nLinea++;
|
||||
}
|
||||
|
||||
// Ordenamos la lista en orden descendente
|
||||
Collections.sort(alumnos, Collections.reverseOrder());
|
||||
|
||||
System.out.println("LISTADO DE NOTAS MEDIAS DE LOS ALUMNOS");
|
||||
System.out.println("--------------------------------------");
|
||||
|
||||
// Mostramos primero alumnos con un 10 de media (si los hay)
|
||||
for (String a : alumnos) {
|
||||
if (a.split(" ")[0].equals("10.00"))
|
||||
System.out.println(a);
|
||||
}
|
||||
|
||||
// Mostramos el resto de alumnos
|
||||
for (String a : alumnos) {
|
||||
if (!a.split(" ")[0].equals("10.00"))
|
||||
System.out.println(a);
|
||||
}
|
||||
|
||||
} catch (NumberFormatException e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
67
src/main/java/iesthiar/Ejercicio_B3.java
Normal file
@@ -0,0 +1,67 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileWriter;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Ejercicio_B3 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
try (Scanner in = new Scanner(System.in);) {
|
||||
|
||||
String strOrigen;
|
||||
String strDestino;
|
||||
|
||||
// Pedimos nombres de ficheros para leer y escribir
|
||||
System.out.print("Fichero a leer: ");
|
||||
strOrigen = in.nextLine();
|
||||
System.out.print("Fichero a escribir: ");
|
||||
strDestino = in.nextLine();
|
||||
|
||||
// Creamos los File
|
||||
File fileOrigen = new File(strOrigen);
|
||||
File fileDestino = new File(strDestino);
|
||||
|
||||
// Comprobamos si el archivo de origen existe
|
||||
if (!fileOrigen.exists()) {
|
||||
throw new FileNotFoundException();
|
||||
}
|
||||
|
||||
// Objetos para lectura y escritura
|
||||
// Scanner reader = new Scanner(fileOrigen);
|
||||
String lectura;
|
||||
try (FileInputStream fis = new FileInputStream(fileOrigen);
|
||||
InputStreamReader isr = new InputStreamReader(fis);
|
||||
BufferedReader reader = new BufferedReader(isr);
|
||||
FileWriter writer = new FileWriter(fileDestino);) {
|
||||
// Leemos el fichero de origen y almacenamos todo en un ArrayList
|
||||
ArrayList<String> nomPersonas = new ArrayList<>();
|
||||
while ((lectura = reader.readLine()) != null) {
|
||||
nomPersonas.add(lectura);
|
||||
}
|
||||
|
||||
// Ordenamos el ArrayList
|
||||
Collections.sort(nomPersonas);
|
||||
|
||||
// Recorremos el ArrayList y vamos escribiendo en el fichero de destino
|
||||
for (String nom : nomPersonas) {
|
||||
writer.write(nom + "\n");
|
||||
}
|
||||
|
||||
System.out.println("El fichero " + fileDestino.getName() + " ha sido creado correctamente");
|
||||
|
||||
}
|
||||
|
||||
} catch (FileNotFoundException e) {
|
||||
System.out.println("Error: El fichero no existe");
|
||||
} catch (Exception e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
69
src/main/java/iesthiar/Ejercicio_B4.java
Normal file
@@ -0,0 +1,69 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Ejercicio_B4 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
int numPersonas;
|
||||
String ruta;
|
||||
|
||||
|
||||
try (Scanner teclado = new Scanner(System.in)){
|
||||
|
||||
System.out.print("Número de nombres de personas a generar: ");
|
||||
numPersonas = teclado.nextInt();
|
||||
teclado.nextLine();
|
||||
|
||||
System.out.print("Ruta donde quiere guardar el archivo generado: ");
|
||||
ruta = teclado.nextLine();
|
||||
|
||||
// Ficheros para lectura
|
||||
File fileNombres = new File("target/classes/iesthiar/Documentos/usa_nombres.txt");
|
||||
File fileApellidos = new File("target/classes/iesthiar/Documentos/usa_apellidos.txt");
|
||||
|
||||
// ArrayList con los datos de los ficheros de lectura
|
||||
ArrayList<String> listaNombres = leerDatosFichero(fileNombres);
|
||||
ArrayList<String> listaApellidos = leerDatosFichero(fileApellidos);
|
||||
|
||||
// Generamos el nombre y apellido aleatoriamente y lo escribimos en el fichero
|
||||
try ( // FileWriter para escritura
|
||||
FileWriter writer = new FileWriter(new File(ruta))) {
|
||||
// Generamos el nombre y apellido aleatoriamente y lo escribimos en el fichero
|
||||
for (int i = 0; i < numPersonas; i++) {
|
||||
int indexNom = (int) (Math.random() * listaNombres.size());
|
||||
int indexApe = (int) (Math.random() * listaApellidos.size());
|
||||
writer.write(listaNombres.get(indexNom) + " " + listaApellidos.get(indexApe) + "\n");
|
||||
}
|
||||
// Cerramos FileWriter y mensaje final
|
||||
}
|
||||
System.out.println("Fichero generado correctamente: " + ruta);
|
||||
|
||||
} catch (FileNotFoundException e) {
|
||||
System.out.println("Error: El fichero no existe");
|
||||
} catch (IOException e) {
|
||||
System.out.println("Error: " + e);
|
||||
} catch (Exception e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
}
|
||||
|
||||
// Devuelve un ArrayList con los datos leidos del fichero
|
||||
public static ArrayList<String> leerDatosFichero(File f) throws FileNotFoundException {
|
||||
try ( Scanner lector = new Scanner(f);){
|
||||
ArrayList<String> lista = new ArrayList<>();
|
||||
while (lector.hasNext()) {
|
||||
lista.add(lector.nextLine());
|
||||
}
|
||||
return lista;
|
||||
} catch (Exception e){
|
||||
throw new FileNotFoundException(e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
65
src/main/java/iesthiar/Ejercicio_B5.java
Normal file
@@ -0,0 +1,65 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Ejercicio_B5 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// Instanciamos a la clase File con la ruta relativa
|
||||
File dirDiccionario = new File("Documentos/Diccionario");
|
||||
|
||||
// Creamos la carpeta 'Diccionario'
|
||||
// Ten en cuenta donde crea los ficheros
|
||||
boolean resultado = dirDiccionario.mkdir();
|
||||
|
||||
if (resultado) {
|
||||
try {
|
||||
// ArrayList donde vamos a almacenar todas las palabras del archivo diccionario.txt
|
||||
ArrayList<String> alDiccionario = new ArrayList<>();
|
||||
|
||||
// Lectura de diccionario.txt
|
||||
File fileDiccionario = new File("Documentos/diccionario.txt");
|
||||
Scanner reader = new Scanner(fileDiccionario);
|
||||
|
||||
// Recorremos el archivo y vamos añadiendo las palabras al ArrayList
|
||||
while (reader.hasNext()) {
|
||||
alDiccionario.add(reader.nextLine());
|
||||
}
|
||||
|
||||
// Cerramos archivo
|
||||
reader.close();
|
||||
|
||||
// Creamos dentro de la carpeta 'Diccionario' tantos archivos como letras del abecedario (A.txt, B.txt, C.txt,...)
|
||||
for (int i = 65; i <= 90; i++) {
|
||||
// Escritura
|
||||
FileWriter writer = new FileWriter(new File(dirDiccionario.getParent() + "/" + dirDiccionario.getName() + "/" + (char) i + ".txt"));
|
||||
|
||||
// Recorremos las palabras del ArrayList
|
||||
for (String palabra : alDiccionario) {
|
||||
// Escribimos en cada archivo las palabras que empiecen por el nombre del archivo
|
||||
if (palabra.toUpperCase().startsWith(Character.toString((char) i))) {
|
||||
writer.write(palabra + "\n");
|
||||
}
|
||||
}
|
||||
|
||||
// Cerramos archivo
|
||||
writer.close();
|
||||
}
|
||||
} catch (FileNotFoundException e) {
|
||||
System.out.println("Error: El fichero no existe");
|
||||
} catch (IOException e) {
|
||||
System.out.println("Error: " + e);
|
||||
} catch (Exception e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
} else {
|
||||
System.out.println("La carpeta " + dirDiccionario.getName() + " no se ha podido crear");
|
||||
}
|
||||
}
|
||||
}
|
||||
53
src/main/java/iesthiar/Ejercicio_B6.java
Normal file
@@ -0,0 +1,53 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Ejercicio_B6 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
Scanner teclado = new Scanner(System.in);
|
||||
|
||||
try {
|
||||
// Pedimos el numero entero a buscar
|
||||
System.out.print("Introduce el número entero a buscar: ");
|
||||
String numeroBuscar = teclado.nextLine();
|
||||
|
||||
// Intentamos abrir el fichero 'pi-million.txt'
|
||||
File fileNumeroPI = new File("Documentos/pi-million.txt");
|
||||
Scanner lector = new Scanner(fileNumeroPI);
|
||||
|
||||
//Cogemos todos los decimales del número PI del fichero
|
||||
String decimalesPI = (lector.nextLine()).substring(2);
|
||||
lector.close();
|
||||
|
||||
boolean encontrado = false;
|
||||
|
||||
for (int i = 0; i < decimalesPI.length() - numeroBuscar.length(); i++)
|
||||
{
|
||||
// Comparamos si 'numeroBuscar' está en el substring de 'decimalesPI'
|
||||
if(numeroBuscar.equals(decimalesPI.substring(i, i+numeroBuscar.length())))
|
||||
{
|
||||
encontrado = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(encontrado)
|
||||
{
|
||||
System.out.println("El número " + numeroBuscar + " ha sido encontrado" );
|
||||
}
|
||||
else
|
||||
{
|
||||
System.out.println("El número " + numeroBuscar + " no ha sido encontrado" );
|
||||
}
|
||||
|
||||
} catch (FileNotFoundException e){
|
||||
System.out.println("Error: El fichero no existe");
|
||||
}catch (Exception e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
89
src/main/java/iesthiar/Ejercicio_B7.java
Normal file
@@ -0,0 +1,89 @@
|
||||
package iesthiar;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
public class Ejercicio_B7 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
System.out.println("ESTADÍSTICAS DE LIBROS");
|
||||
System.out.println("----------------------");
|
||||
System.out.println("");
|
||||
|
||||
try {
|
||||
// Obtenemos la lista de archivos de la carpeta Libros
|
||||
File rutaLibros = new File("Documentos/Libros");
|
||||
File[] listaLibros = rutaLibros.listFiles();
|
||||
|
||||
// Para cada archivo
|
||||
for (File libro : listaLibros) {
|
||||
|
||||
// Lector de archivo
|
||||
Scanner lector = new Scanner(libro);
|
||||
|
||||
// Inicializamos contadores y Hashtable
|
||||
int numLin = 0, numPal = 0, numCar = 0;
|
||||
Hashtable<String, Integer> hashPalabras = new Hashtable<String, Integer>();
|
||||
|
||||
// Procesamos líneas mientras quede algo por leer
|
||||
while (lector.hasNext()) {
|
||||
// Línea
|
||||
String linea = lector.nextLine();
|
||||
numLin++;
|
||||
|
||||
// Palabras
|
||||
String[] palabras = linea.split(" ");
|
||||
numPal += palabras.length;
|
||||
|
||||
// Para cada palabra actualizamos numCar y metemos en la Hashtable
|
||||
for (String palabra : palabras) {
|
||||
char[] letras = palabra.toCharArray();
|
||||
numCar += letras.length;
|
||||
|
||||
// Si ya existe la palabra aumentamos su valor, si no existe la guardamos
|
||||
if (hashPalabras.containsKey(palabra)) {
|
||||
hashPalabras.put(palabra, hashPalabras.get(palabra) + 1);
|
||||
} else {
|
||||
hashPalabras.put(palabra, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Mostramos estadísticas del libro
|
||||
System.out.println("Libro: " + libro.getName());
|
||||
System.out.println("Lineas totales: " + numLin);
|
||||
System.out.println("Número de palabras: " + numPal);
|
||||
System.out.println("Número de carácteres: " + numCar);
|
||||
System.out.println("Las 10 palabras más comunes son: ");
|
||||
|
||||
// Muestra las 10 palabras más comunes
|
||||
muestraPalabrasMasComunes(hashPalabras);
|
||||
|
||||
System.out.println("");
|
||||
}
|
||||
|
||||
} catch (FileNotFoundException e) {
|
||||
System.out.println("Error: El fichero no existe");
|
||||
} catch (Exception e) {
|
||||
System.out.println("Error: " + e);
|
||||
}
|
||||
}
|
||||
|
||||
// Muestra las 10 palabras más comunes
|
||||
public static void muestraPalabrasMasComunes(Hashtable<String, Integer> t) {
|
||||
|
||||
// Obtenermos una lista ordenada por nº de palabras
|
||||
ArrayList<Map.Entry<String, Integer>> l = new ArrayList(t.entrySet());
|
||||
Collections.sort(l, Collections.reverseOrder(new Comparator<Map.Entry<String, Integer>>() {
|
||||
public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
|
||||
return o1.getValue().compareTo(o2.getValue());
|
||||
}
|
||||
}));
|
||||
|
||||
// Imprime las 10 palabras más comunes
|
||||
for (int i = 0; i < 10; i++) {
|
||||
System.out.println(l.get(i));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 37 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/bisontes.jpg
Normal file
|
After Width: | Height: | Size: 371 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/boxeo.jpg
Normal file
|
After Width: | Height: | Size: 531 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/brooklyn.jpg
Normal file
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 222 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/einstein.jpg
Normal file
|
After Width: | Height: | Size: 107 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/hubble.jpg
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/negro.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/reina.jpg
Normal file
|
After Width: | Height: | Size: 527 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/titanic.jpg
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/tsunami.jpg
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
src/main/resources/iesthiar/Documentos/Fotografias/warishell.jpg
Normal file
|
After Width: | Height: | Size: 114 KiB |
1899
src/main/resources/iesthiar/Documentos/Libros/coplas_manrique.txt
Normal file
2504
src/main/resources/iesthiar/Documentos/Libros/lazarillo.txt
Normal file
37861
src/main/resources/iesthiar/Documentos/Libros/quijote_cervantes.txt
Normal file
10310
src/main/resources/iesthiar/Documentos/Libros/vida_unamuno.txt
Normal file
10
src/main/resources/iesthiar/Documentos/alumnos_notas.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
Joanna Rogers 10 0 8 6 2 9
|
||||
Michele Poole 5 9 8 5 4 9 8 2
|
||||
Toni Harper 10 10 3 4 10
|
||||
Troy Walters 5 10 1 4 10 10 9 2 3 6
|
||||
Patrick Santos 5 4 9 8
|
||||
Gabriel Moreno 6 4 4 4
|
||||
Malcolm Lindsey 0 3 5 9 10 9 2
|
||||
Gilbert Santiago 6 7 9 3 5 0
|
||||
Ron Garza 7 8 5 3
|
||||
Vivian Chambers 8 2 6 0
|
||||
4
src/main/resources/iesthiar/Documentos/datos.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
Juan:28:555123456
|
||||
María:35:555567890
|
||||
Pedro:42:555901234
|
||||
Laura:19:555345678
|
||||
|
BIN
src/main/resources/iesthiar/Documentos/datos_personas.bin
Normal file
85
src/main/resources/iesthiar/Documentos/datos_personas.csv
Normal file
@@ -0,0 +1,85 @@
|
||||
11111111A;Juan;García Pérez;25
|
||||
22222222B;María;González Rodríguez;32
|
||||
33333333C;Pedro;Martínez Sánchez;46
|
||||
44444444D;Sara;Fernández García;18
|
||||
55555555E;Javier;López Fernández;29
|
||||
66666666F;Carmen;Gómez Ruiz;57
|
||||
77777777G;Pablo;Hernández López;41
|
||||
88888888H;Lucía;Jiménez García;23
|
||||
99999999I;Ana;Moreno Rodríguez;36
|
||||
00000000J;José;Ruiz Sánchez;51
|
||||
12345678K;Sonia;Sánchez Jiménez;28
|
||||
23456789L;David;Pérez Martínez;43
|
||||
34567890M;Lorena;García Gómez;39
|
||||
45678901N;Andrés;Martínez González;32
|
||||
56789012O;Marta;Fernández Pérez;27
|
||||
67890123P;Rafael;Gómez Sánchez;35
|
||||
78901234Q;Elena;Jiménez Ruiz;47
|
||||
89012345R;Francisco;Moreno García;52
|
||||
90123456S;Laura;Ruiz Rodríguez;29
|
||||
01234567T;Antonio;Sánchez Fernández;43
|
||||
12345678U;Isabel;González López;24
|
||||
23456789V;Carlos;Martínez García;31
|
||||
34567890W;Alicia;Fernández Ruiz;38
|
||||
45678901X;Jorge;Gómez Pérez;42
|
||||
56789012Y;Cristina;Hernández Martínez;36
|
||||
67890123Z;Miguel;Jiménez Sánchez;49
|
||||
22222223A;Luis;González García;27
|
||||
33333334B;Ana;Martínez Pérez;42
|
||||
44444445C;Juan;Fernández Sánchez;35
|
||||
55555556D;Lucía;García Ruiz;29
|
||||
66666667E;Pedro;Pérez González;51
|
||||
77777778F;María;Rodríguez Martínez;46
|
||||
88888889G;Pablo;Sánchez García;23
|
||||
99999990H;Carmen;González Rodríguez;32
|
||||
00000001I;Javier;Gómez Sánchez;37
|
||||
11111112J;Sara;Jiménez Fernández;18
|
||||
22222224K;José;Hernández García;29
|
||||
33333335L;Lucía;García Pérez;41
|
||||
44444446M;Andrea;Jiménez Ruiz;38
|
||||
55555557N;Juan;Fernández Sánchez;47
|
||||
66666668O;Sofía;García Pérez;24
|
||||
77777779P;Miguel;Pérez Rodríguez;33
|
||||
88888880Q;María;Rodríguez García;28
|
||||
99999991R;Pablo;Sánchez Ruiz;44
|
||||
00000002S;Carmen;González Pérez;55
|
||||
11111114A;Ana;López García;32
|
||||
22222225B;Francisco;Martínez Ruiz;48
|
||||
33333336C;María;González López;27
|
||||
44444447D;Javier;Fernández García;39
|
||||
55555558E;Lucía;Pérez Sánchez;21
|
||||
66666669F;Pedro;García Ruiz;55
|
||||
77777770G;Marta;Jiménez Sánchez;69
|
||||
88888881H;Pablo;Gómez García;36
|
||||
99999992I;Carmen;Ruiz Pérez;44
|
||||
00000003J;Juan;Hernández Rodríguez;71
|
||||
12345679K;Sonia;López Sánchez;28
|
||||
23456780L;David;Martínez González;73
|
||||
34567891M;Lorena;Fernández Pérez;39
|
||||
45678902N;Andrés;García Ruiz;32
|
||||
56789013O;Marta;Pérez Sánchez;27
|
||||
67890124P;Rafael;Jiménez García;66
|
||||
78901235Q;Elena;Gómez Ruiz;47
|
||||
89012346R;Francisco;Ruiz Pérez;52
|
||||
90123457S;Laura;López García;69
|
||||
01234568T;Antonio;Martínez Fernández;43
|
||||
12345679U;Isabel;González López;24
|
||||
23456780V;Carlos;García Fernández;71
|
||||
34567891W;Alicia;Ruiz Sánchez;38
|
||||
45678902X;Jorge;Fernández Ruiz;82
|
||||
56789013Y;Cristina;Pérez Martínez;36
|
||||
67890124Z;Miguel;Jiménez Sánchez;89
|
||||
22222226A;Luis;González García;27
|
||||
33333337B;Ana;Martínez Pérez;42
|
||||
44444448C;Juan;Fernández Sánchez;35
|
||||
55555559D;Lucía;García Ruiz;29
|
||||
66666670E;Pedro;Pérez González;71
|
||||
77777781F;María;Rodríguez Martínez;46
|
||||
88888892G;Pablo;Sánchez García;23
|
||||
99999993H;Carmen;González Rodríguez;32
|
||||
00000004I;Javier;Gómez Sánchez;37
|
||||
11111115J;Sara;Jiménez Fernández;18
|
||||
22222227K;José;Hernández García;79
|
||||
33333338L;Lucía;García Pérez;41
|
||||
44444449M;Andrea;Jiménez Ruiz;38
|
||||
55555560N;Juan;Fernández Sánchez;47
|
||||
|
85981
src/main/resources/iesthiar/Documentos/diccionario.txt
Normal file
1
src/main/resources/iesthiar/Documentos/enteros.txt
Normal file
@@ -0,0 +1 @@
|
||||
562 347 121 878 465 327 936 454 704 6 258 613 416 302 348 387 714 285 931 117 280 436 737 386 41 453 126 886 654 435 170 779 960 555 953 227 828 740 512 794 34 817 763 120 662 565 452 423 259 455 341 582 121 951 583 605 168 173 555 53 580 569 331 596 191 137 212 678 753 923 108 870 232 25 585 142 726 679 131 163 51 431 401 874 673 180 400 562 829 873 424 768 191 811 607 468 951 891 640 698 325 409 804 902 358 177 878 80 502 623
|
||||
10
src/main/resources/iesthiar/Documentos/frases.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
Valor es lo que se necesita para levantarse y hablar, pero también es lo que se requiere para sentarse y escuchar.
|
||||
Todos somos aficionados. La vida es tan corta que no da para más.
|
||||
Si no sueltas el pasado, ¿con qué mano agarras el futuro?
|
||||
No cambies lo que más quieres en la vida por lo que más quieres en el momento, porque los momentos pasan y la vida sigue.
|
||||
No busques personas con tus mismos gustos, busca personas con tus mismos valores.
|
||||
Cuando no sepas dónde ir, sigue el perfume de un sueño.
|
||||
La vida es una obra teatral que no importa cuánto haya durado, sino lo bien que haya sido representada.
|
||||
La perfección se logra no cuando no hay nada más que añadir, sino cuando no hay nada más que quitar.
|
||||
En el camino perderás personas y cosas. No te pierdas con ellas.
|
||||
Es una locura odiar a todas las rosas porque una te pinchó. Renunciar a todos tus sueños porque uno de ellos no se realizó.
|
||||
1000
src/main/resources/iesthiar/Documentos/numeros.txt
Normal file
1
src/main/resources/iesthiar/Documentos/pi-million.txt
Normal file
245
src/main/resources/iesthiar/Documentos/usa_apellidos.txt
Normal file
@@ -0,0 +1,245 @@
|
||||
Adams
|
||||
Aguilar
|
||||
Allison
|
||||
Andrews
|
||||
Arnold
|
||||
Austin
|
||||
Bailey
|
||||
Ballard
|
||||
Banks
|
||||
Barker
|
||||
Barrett
|
||||
Bass
|
||||
Bates
|
||||
Benson
|
||||
Bishop
|
||||
Bradley
|
||||
Brady
|
||||
Brewer
|
||||
Bryan
|
||||
Burns
|
||||
Burton
|
||||
Byrd
|
||||
Cain
|
||||
Campbell
|
||||
Cannon
|
||||
Carpenter
|
||||
Carr
|
||||
Carroll
|
||||
Carter
|
||||
Castillo
|
||||
Castro
|
||||
Chambers
|
||||
Chandler
|
||||
Chavez
|
||||
Clayton
|
||||
Cobb
|
||||
Collier
|
||||
Copeland
|
||||
Cortez
|
||||
Craig
|
||||
Crawford
|
||||
Cross
|
||||
Daniel
|
||||
Daniels
|
||||
Davidson
|
||||
Davis
|
||||
Dawson
|
||||
Day
|
||||
Dean
|
||||
Doyle
|
||||
Drake
|
||||
Duncan
|
||||
Dunn
|
||||
Ellis
|
||||
Erickson
|
||||
Estrada
|
||||
Ferguson
|
||||
Fields
|
||||
Fisher
|
||||
Fletcher
|
||||
Flowers
|
||||
Floyd
|
||||
Fowler
|
||||
Fox
|
||||
Gardner
|
||||
Garner
|
||||
Garza
|
||||
George
|
||||
Gibson
|
||||
Gilbert
|
||||
Gill
|
||||
Glover
|
||||
Gonzales
|
||||
Gonzalez
|
||||
Goodman
|
||||
Goodwin
|
||||
Gordon
|
||||
Gray
|
||||
Green
|
||||
Greer
|
||||
Gregory
|
||||
Gross
|
||||
Guzman
|
||||
Hale
|
||||
Hamilton
|
||||
Hampton
|
||||
Hanson
|
||||
Hardy
|
||||
Harper
|
||||
Harrington
|
||||
Hart
|
||||
Haynes
|
||||
Hernandez
|
||||
Hicks
|
||||
Higgins
|
||||
Hines
|
||||
Holland
|
||||
Holloway
|
||||
Holmes
|
||||
Horton
|
||||
Houston
|
||||
Howard
|
||||
Huff
|
||||
Hunt
|
||||
Ingram
|
||||
Jackson
|
||||
Jefferson
|
||||
Jennings
|
||||
Jensen
|
||||
Jimenez
|
||||
Johnson
|
||||
Joseph
|
||||
Keller
|
||||
Kelley
|
||||
Kennedy
|
||||
Kim
|
||||
King
|
||||
Klein
|
||||
Lane
|
||||
Larson
|
||||
Lawrence
|
||||
Lindsey
|
||||
Little
|
||||
Logan
|
||||
Love
|
||||
Lowe
|
||||
Lyons
|
||||
Mack
|
||||
Maldonado
|
||||
Mann
|
||||
Manning
|
||||
Martinez
|
||||
Matthews
|
||||
Maxwell
|
||||
May
|
||||
Mcbride
|
||||
Mccormick
|
||||
Mcdonald
|
||||
Mcgee
|
||||
Mcguire
|
||||
Mckenzie
|
||||
Mclaughlin
|
||||
Mendez
|
||||
Meyer
|
||||
Miller
|
||||
Mitchell
|
||||
Morales
|
||||
Moreno
|
||||
Morgan
|
||||
Murray
|
||||
Nash
|
||||
Neal
|
||||
Newman
|
||||
Newton
|
||||
Nguyen
|
||||
Nichols
|
||||
Norris
|
||||
Norton
|
||||
Nunez
|
||||
Ortega
|
||||
Ortiz
|
||||
Owen
|
||||
Owens
|
||||
Palmer
|
||||
Parker
|
||||
Patrick
|
||||
Pena
|
||||
Perkins
|
||||
Perry
|
||||
Peterson
|
||||
Phillips
|
||||
Pierce
|
||||
Poole
|
||||
Porter
|
||||
Powell
|
||||
Powers
|
||||
Price
|
||||
Quinn
|
||||
Ramirez
|
||||
Reese
|
||||
Reyes
|
||||
Rhodes
|
||||
Rice
|
||||
Richardson
|
||||
Riley
|
||||
Rios
|
||||
Robbins
|
||||
Roberson
|
||||
Robinson
|
||||
Rodgers
|
||||
Rodriquez
|
||||
Rogers
|
||||
Rose
|
||||
Ross
|
||||
Rowe
|
||||
Roy
|
||||
Ruiz
|
||||
Sanchez
|
||||
Sanders
|
||||
Santiago
|
||||
Santos
|
||||
Schmidt
|
||||
Schneider
|
||||
Schwartz
|
||||
Shaw
|
||||
Shelton
|
||||
Sherman
|
||||
Simon
|
||||
Simpson
|
||||
Smith
|
||||
Soto
|
||||
Stephens
|
||||
Stevens
|
||||
Stone
|
||||
Strickland
|
||||
Sutton
|
||||
Swanson
|
||||
Tate
|
||||
Thompson
|
||||
Thornton
|
||||
Todd
|
||||
Tran
|
||||
Turner
|
||||
Tyler
|
||||
Valdez
|
||||
Vargas
|
||||
Vasquez
|
||||
Wallace
|
||||
Walsh
|
||||
Walters
|
||||
Walton
|
||||
Warren
|
||||
Washington
|
||||
Waters
|
||||
Watkins
|
||||
Watts
|
||||
Weaver
|
||||
Webb
|
||||
Welch
|
||||
West
|
||||
White
|
||||
Wilkerson
|
||||
Wilson
|
||||
Wood
|
||||
Young
|
||||
274
src/main/resources/iesthiar/Documentos/usa_nombres.txt
Normal file
@@ -0,0 +1,274 @@
|
||||
Ada
|
||||
Adrian
|
||||
Alberto
|
||||
Alexis
|
||||
Alice
|
||||
Alyssa
|
||||
Amber
|
||||
Angelina
|
||||
Anne
|
||||
Antonio
|
||||
April
|
||||
Archie
|
||||
Barbara
|
||||
Beatrice
|
||||
Benny
|
||||
Bernard
|
||||
Bertha
|
||||
Bessie
|
||||
Betty
|
||||
Beulah
|
||||
Blake
|
||||
Bobbie
|
||||
Boyd
|
||||
Brad
|
||||
Bradford
|
||||
Brandi
|
||||
Bruce
|
||||
Bryan
|
||||
Calvin
|
||||
Camille
|
||||
Candace
|
||||
Carlton
|
||||
Carol
|
||||
Carole
|
||||
Caroline
|
||||
Carrie
|
||||
Cassandra
|
||||
Cathy
|
||||
Cedric
|
||||
Charles
|
||||
Christie
|
||||
Christina
|
||||
Christine
|
||||
Cindy
|
||||
Claire
|
||||
Claude
|
||||
Colleen
|
||||
Cora
|
||||
Courtney
|
||||
Craig
|
||||
Cynthia
|
||||
Dana
|
||||
Danielle
|
||||
Darla
|
||||
Darrell
|
||||
Darren
|
||||
Darrin
|
||||
Dean
|
||||
Deanna
|
||||
Debbie
|
||||
Delbert
|
||||
Dixie
|
||||
Dominick
|
||||
Don
|
||||
Donnie
|
||||
Doris
|
||||
Dorothy
|
||||
Doyle
|
||||
Drew
|
||||
Dwayne
|
||||
Dwight
|
||||
Elena
|
||||
Elijah
|
||||
Ellen
|
||||
Elmer
|
||||
Emily
|
||||
Emma
|
||||
Enrique
|
||||
Erick
|
||||
Erika
|
||||
Ervin
|
||||
Essie
|
||||
Eugene
|
||||
Eula
|
||||
Eva
|
||||
Flora
|
||||
Florence
|
||||
Forrest
|
||||
Francis
|
||||
Frank
|
||||
Franklin
|
||||
Fred
|
||||
Freda
|
||||
Gabriel
|
||||
Garrett
|
||||
Gary
|
||||
Geneva
|
||||
Genevieve
|
||||
Georgia
|
||||
Gilbert
|
||||
Ginger
|
||||
Gloria
|
||||
Grace
|
||||
Grady
|
||||
Greg
|
||||
Harry
|
||||
Hector
|
||||
Herman
|
||||
Hilda
|
||||
Hope
|
||||
Hubert
|
||||
Hugh
|
||||
Hugo
|
||||
Ian
|
||||
Ida
|
||||
Ira
|
||||
Isaac
|
||||
Jackie
|
||||
Jaime
|
||||
Jake
|
||||
Jamie
|
||||
Jan
|
||||
Janie
|
||||
Jeffery
|
||||
Jenny
|
||||
Jeremiah
|
||||
Jessica
|
||||
Jessie
|
||||
Jimmie
|
||||
Joan
|
||||
Joanna
|
||||
Jodi
|
||||
Joey
|
||||
Jordan
|
||||
Josephine
|
||||
Juanita
|
||||
June
|
||||
Justin
|
||||
Karla
|
||||
Katherine
|
||||
Kathryn
|
||||
Katie
|
||||
Ken
|
||||
Kerry
|
||||
Kim
|
||||
Kimberly
|
||||
Krista
|
||||
Kristen
|
||||
Kristin
|
||||
Latoya
|
||||
Lauren
|
||||
Laurie
|
||||
Laverne
|
||||
Leah
|
||||
Lela
|
||||
Leland
|
||||
Leon
|
||||
Leslie
|
||||
Lester
|
||||
Lewis
|
||||
Lillie
|
||||
Linda
|
||||
Lindsay
|
||||
Lori
|
||||
Louise
|
||||
Luz
|
||||
Lydia
|
||||
Mack
|
||||
Mae
|
||||
Malcolm
|
||||
Mamie
|
||||
Mandy
|
||||
Marco
|
||||
Marcus
|
||||
Margaret
|
||||
Marianne
|
||||
Marie
|
||||
Mario
|
||||
Marion
|
||||
Marlene
|
||||
Marshall
|
||||
Marta
|
||||
Marty
|
||||
Marvin
|
||||
Mary
|
||||
Maryann
|
||||
Maxine
|
||||
Melanie
|
||||
Melody
|
||||
Mercedes
|
||||
Michael
|
||||
Micheal
|
||||
Michele
|
||||
Miguel
|
||||
Mike
|
||||
Milton
|
||||
Miriam
|
||||
Misty
|
||||
Mitchell
|
||||
Molly
|
||||
Naomi
|
||||
Neal
|
||||
Neil
|
||||
Nellie
|
||||
Nettie
|
||||
Nicolas
|
||||
Noel
|
||||
Olga
|
||||
Oliver
|
||||
Opal
|
||||
Ora
|
||||
Orville
|
||||
Oscar
|
||||
Pablo
|
||||
Pamela
|
||||
Patrick
|
||||
Patty
|
||||
Pedro
|
||||
Percy
|
||||
Preston
|
||||
Rachael
|
||||
Rafael
|
||||
Ramon
|
||||
Ramona
|
||||
Rebecca
|
||||
Reginald
|
||||
Rene
|
||||
Rhonda
|
||||
Rick
|
||||
Ron
|
||||
Ronald
|
||||
Rosemarie
|
||||
Roy
|
||||
Ruben
|
||||
Ruby
|
||||
Rufus
|
||||
Salvador
|
||||
Sam
|
||||
Samuel
|
||||
Sarah
|
||||
Seth
|
||||
Shelia
|
||||
Sherry
|
||||
Sonja
|
||||
Stephen
|
||||
Steve
|
||||
Susan
|
||||
Sylvia
|
||||
Teresa
|
||||
Terrence
|
||||
Thelma
|
||||
Timmy
|
||||
Toni
|
||||
Traci
|
||||
Travis
|
||||
Troy
|
||||
Tyler
|
||||
Vernon
|
||||
Victor
|
||||
Vincent
|
||||
Viola
|
||||
Vivian
|
||||
Walter
|
||||
Wayne
|
||||
Wilbur
|
||||
Willard
|
||||
Willie
|
||||
Willis
|
||||
Wilson
|
||||
Wm
|
||||
Yolanda
|
||||
Yvette
|
||||
Yvonne
|
||||
Nancy
|
||||
300
src/main/resources/iesthiar/Documentos/usa_personas.txt
Normal file
@@ -0,0 +1,300 @@
|
||||
Elena Santiago
|
||||
Elijah Fowler
|
||||
Adrian Valdez
|
||||
Calvin Ingram
|
||||
Kimberly Gill
|
||||
Carlton Hale
|
||||
Forrest Gilbert
|
||||
Cedric Holloway
|
||||
Michael Cannon
|
||||
Rhonda Wilson
|
||||
Fred Banks
|
||||
Jessica Roy
|
||||
Jaime Sutton
|
||||
Angelina Smith
|
||||
Traci Hunt
|
||||
Florence Cortez
|
||||
Carole Harrington
|
||||
Grady Tyler
|
||||
Dominick Holmes
|
||||
Marion Jackson
|
||||
Melody Perkins
|
||||
Preston Gonzalez
|
||||
Christie Floyd
|
||||
Gloria Sherman
|
||||
Joan Guzman
|
||||
Yolanda Sanchez
|
||||
Bessie Meyer
|
||||
Ellen Cross
|
||||
Mike Allison
|
||||
Jenny Quinn
|
||||
Willard Nunez
|
||||
Brandi Mcgee
|
||||
Freda Matthews
|
||||
Wilson Erickson
|
||||
Delbert Lyons
|
||||
Luz Shaw
|
||||
Rufus Webb
|
||||
Walter Jensen
|
||||
Jan Turner
|
||||
Terrence Wallace
|
||||
Rafael Shelton
|
||||
Reginald George
|
||||
Carol Schwartz
|
||||
Willie Carroll
|
||||
Hope Lane
|
||||
Marta Dunn
|
||||
Cora Horton
|
||||
Maryann Howard
|
||||
Alberto Gardner
|
||||
Marion Owen
|
||||
Darla Cain
|
||||
Salvador Gordon
|
||||
Camille Phillips
|
||||
Genevieve Daniels
|
||||
Georgia Barker
|
||||
Hector Barrett
|
||||
Ronald Chavez
|
||||
Melanie Perry
|
||||
Bryan Simpson
|
||||
Timmy Patrick
|
||||
Marvin Holland
|
||||
Olga Thornton
|
||||
Jake Powers
|
||||
Vernon Parker
|
||||
Geneva Byrd
|
||||
Alexis Hardy
|
||||
Kim Rodgers
|
||||
Ron Jimenez
|
||||
Jordan Bishop
|
||||
Enrique Higgins
|
||||
Bradford White
|
||||
Sam Nash
|
||||
Leon Porter
|
||||
Milton Burns
|
||||
Krista Copeland
|
||||
Leah Kelley
|
||||
Justin Mitchell
|
||||
Nancy Hicks
|
||||
Antonio Vasquez
|
||||
Lela Brady
|
||||
Micheal Houston
|
||||
Mandy Peterson
|
||||
Maxine Welch
|
||||
Colleen Mann
|
||||
Thelma Warren
|
||||
Roy Rowe
|
||||
Ada Soto
|
||||
Noel Joseph
|
||||
Essie Hines
|
||||
Joey Wood
|
||||
Mercedes Hamilton
|
||||
Neil Castro
|
||||
Mamie May
|
||||
Marty Carter
|
||||
Laurie Bass
|
||||
Isaac Glover
|
||||
Christine Jennings
|
||||
Rick Santos
|
||||
Jackie Bryan
|
||||
Boyd Craig
|
||||
Marco Bryan
|
||||
Lauren Arnold
|
||||
Mario Norton
|
||||
Cassandra Todd
|
||||
Katherine Little
|
||||
Danielle Bishop
|
||||
Percy Mendez
|
||||
Barbara Bass
|
||||
Yvette Carr
|
||||
Freda Walton
|
||||
Miriam Aguilar
|
||||
Hubert Owens
|
||||
Hugh Gilbert
|
||||
Craig Dunn
|
||||
Mary Schmidt
|
||||
Ramona Vasquez
|
||||
Nellie Powell
|
||||
Justin Hanson
|
||||
Sylvia Cobb
|
||||
Sherry West
|
||||
Courtney Schneider
|
||||
Bernard Carter
|
||||
Louise Benson
|
||||
Caroline Watkins
|
||||
Erika Adams
|
||||
Marcus Rice
|
||||
Nettie Hampton
|
||||
Josephine Roy
|
||||
Greg Gross
|
||||
Deanna King
|
||||
Francis Ellis
|
||||
Darren Bailey
|
||||
Jodi Cortez
|
||||
Ginger Mcdonald
|
||||
Grace Smith
|
||||
Karla Sanders
|
||||
Harry Roberson
|
||||
Alyssa Andrews
|
||||
Garrett Brewer
|
||||
Camille Waters
|
||||
Lewis Hart
|
||||
Yvonne Pierce
|
||||
June Rose
|
||||
Dana Castillo
|
||||
Margaret Erickson
|
||||
Susan Quinn
|
||||
Ian Nichols
|
||||
Flora Ballard
|
||||
Gabriel Mack
|
||||
Ramon Mcbride
|
||||
Michael Rhodes
|
||||
Amber Holloway
|
||||
Mitchell Holmes
|
||||
Eugene Hale
|
||||
Drew Stevens
|
||||
Franklin Fisher
|
||||
Oliver Logan
|
||||
Ira Newton
|
||||
Bruce Hernandez
|
||||
Kristen Green
|
||||
Archie Lyons
|
||||
Kristin Rios
|
||||
Isaac Tran
|
||||
Emma Webb
|
||||
Ken Jefferson
|
||||
Naomi Murray
|
||||
Delbert Riley
|
||||
Marlene Gray
|
||||
Tyler Martinez
|
||||
Rosemarie Bates
|
||||
Dwayne Day
|
||||
Donnie Reyes
|
||||
Erick Palmer
|
||||
Mamie Fox
|
||||
Nicolas Pena
|
||||
Thelma Mccormick
|
||||
Ruby Walters
|
||||
Lori Welch
|
||||
Hugo Ramirez
|
||||
Benny Simon
|
||||
Betty Jackson
|
||||
Vincent Newman
|
||||
Dorothy Cain
|
||||
Mack Price
|
||||
Marianne Morales
|
||||
Emily Young
|
||||
Don Fletcher
|
||||
Anne Flowers
|
||||
Dixie Huff
|
||||
Victor Mann
|
||||
Shelia Mcguire
|
||||
Gary Davis
|
||||
Eula Robbins
|
||||
Ora Glover
|
||||
Ida Larson
|
||||
Oscar Stone
|
||||
Jessie Barker
|
||||
Claude Campbell
|
||||
Jimmie Thompson
|
||||
Rachael Dean
|
||||
Charles Duncan
|
||||
Cathy Maldonado
|
||||
Candace Drake
|
||||
Neal Maxwell
|
||||
Jeremiah Kim
|
||||
Hilda Morgan
|
||||
Travis Ortiz
|
||||
Marianne Reese
|
||||
Lindsay Mclaughlin
|
||||
Herman Wilkerson
|
||||
Darrin Johnson
|
||||
Opal Burton
|
||||
Leslie Schwartz
|
||||
Laverne Gregory
|
||||
Darren Ross
|
||||
Marshall Walsh
|
||||
Dean Norris
|
||||
Seth Ferguson
|
||||
Josephine Estrada
|
||||
Patty Perry
|
||||
Beulah Hamilton
|
||||
Steve Flowers
|
||||
Lillie Manning
|
||||
Doyle Doyle
|
||||
Beatrice Bradley
|
||||
Francis Sanchez
|
||||
Nettie Young
|
||||
Carrie Hunt
|
||||
Jessica Nichols
|
||||
Bruce Mckenzie
|
||||
Alice Miller
|
||||
Ervin Vargas
|
||||
April Greer
|
||||
Marie Crawford
|
||||
Lydia Kennedy
|
||||
Cindy Tate
|
||||
Doris Rodriquez
|
||||
Rene Thompson
|
||||
Samuel Cross
|
||||
Forrest Swanson
|
||||
Ruben Turner
|
||||
Pablo Keller
|
||||
Teresa Love
|
||||
Wilbur Todd
|
||||
Juanita Chandler
|
||||
Misty White
|
||||
Debbie Kelley
|
||||
Gloria Sherman
|
||||
Stephen Lawrence
|
||||
Toni Harper
|
||||
Troy Walters
|
||||
Patrick Santos
|
||||
Joanna Rogers
|
||||
Gabriel Moreno
|
||||
Malcolm Lindsey
|
||||
Gilbert Santiago
|
||||
Ron Garza
|
||||
Vivian Chambers
|
||||
Michele Poole
|
||||
Christina Barrett
|
||||
Jeffery Strickland
|
||||
Wayne Klein
|
||||
Linda Wood
|
||||
Thelma Davidson
|
||||
Jamie Mitchell
|
||||
Eva Holloway
|
||||
Brad Perkins
|
||||
Viola Sanders
|
||||
Molly Nguyen
|
||||
Lester Lowe
|
||||
Leland Bryan
|
||||
Bertha Austin
|
||||
Kathryn Haynes
|
||||
Blake Horton
|
||||
Pedro Nash
|
||||
Sam Stephens
|
||||
Mae Weaver
|
||||
Darrell Carpenter
|
||||
Sarah Gonzales
|
||||
Boyd Goodman
|
||||
Bobbie Neal
|
||||
Frank Daniel
|
||||
Orville Jackson
|
||||
Claire Watts
|
||||
Wm Robinson
|
||||
Katie Peterson
|
||||
Lauren Fields
|
||||
Latoya Gardner
|
||||
Cynthia Newman
|
||||
Elmer Dawson
|
||||
Dwight Garner
|
||||
Kerry Ruiz
|
||||
Camille Collier
|
||||
Janie Campbell
|
||||
Miguel Ortega
|
||||
Bradford Washington
|
||||
Willis Gibson
|
||||
Sonja Clayton
|
||||
Pamela Goodwin
|
||||
Rebecca Richardson
|
||||