package experimento2;


import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class Discotienda {
    
    String nombre;
	String direccion;

        
	CD cd = new CD();
        
        public void empleado() throws Exception
        {
        int x; 
        BufferedReader lector=new BufferedReader(new InputStreamReader(System.in));
        System.out.println("¿Cuántos empleados tiene?");
        x = Integer.parseInt(lector.readLine());
        for(int i=0;i<x;i++)
        {
          System.out.println("Escrita el nombre del empleado");
          String j = lector.readLine();
          List<String>nombres=new ArrayList<String>();
          nombres.add(j);  
        }

	     
        }
        
        public void telefono() throws Exception
        {
        int x; 
        BufferedReader lector=new BufferedReader(new InputStreamReader(System.in));
        System.out.println("¿Cuántos teléfonos va a agregar?");
        x = Integer.parseInt(lector.readLine());
        for(int i=0;i<x;i++)
        {
          System.out.println("Escriba el número");
          int j = Integer.parseInt(lector.readLine());
          List<Integer>numeros=new ArrayList<Integer>();
          numeros.add(j);  
        }

	     
        }
       
}