fork download
  1. package experimento2;
  2.  
  3.  
  4. import java.io.BufferedReader;
  5. import java.io.InputStreamReader;
  6. import java.util.ArrayList;
  7. import java.util.List;
  8.  
  9. public class Discotienda {
  10.  
  11. String nombre;
  12. String direccion;
  13.  
  14.  
  15. CD cd = new CD();
  16.  
  17. public void empleado() throws Exception
  18. {
  19. int x;
  20. System.out.println("¿Cuántos empleados tiene?");
  21. x = Integer.parseInt(lector.readLine());
  22. for(int i=0;i<x;i++)
  23. {
  24. System.out.println("Escrita el nombre del empleado");
  25. String j = lector.readLine();
  26. List<String>nombres=new ArrayList<String>();
  27. nombres.add(j);
  28. }
  29.  
  30.  
  31. }
  32.  
  33. public void telefono() throws Exception
  34. {
  35. int x;
  36. System.out.println("¿Cuántos teléfonos va a agregar?");
  37. x = Integer.parseInt(lector.readLine());
  38. for(int i=0;i<x;i++)
  39. {
  40. System.out.println("Escriba el número");
  41. int j = Integer.parseInt(lector.readLine());
  42. List<Integer>numeros=new ArrayList<Integer>();
  43. numeros.add(j);
  44. }
  45.  
  46.  
  47. }
  48.  
  49. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty