fork download
  1. package experimento2;
  2.  
  3. import java.io.BufferedReader;
  4. import java.io.IOException;
  5. import java.io.InputStreamReader;
  6.  
  7.  
  8. public class Experimento2 {
  9.  
  10.  
  11. public static void main(String[] args) throws Exception {
  12.  
  13. Discotienda discotienda = new Discotienda();
  14. CD cd = new CD();
  15.  
  16. int opcion;
  17.  
  18. do
  19.  
  20. {
  21. System.out.println("Buenos días, ¿Qué desea hacer?");
  22. System.out.println("1. Registrar datos de la Discotienda");
  23. System.out.println("2. Agregar CD's al inventario");
  24. System.out.println("3. Salir");
  25. opcion = Integer.parseInt(lector.readLine());
  26.  
  27. switch (opcion)
  28. {
  29. case 1:
  30.  
  31. System.out.println("Ingrese el nombre de la Discotienda");
  32. String nombre = lector.readLine();
  33. System.out.println("Ingrese la dirección del establecimiento");
  34. String direccion = lector.readLine();
  35. System.out.println("Ingresar un teléfono(s)");
  36. discotienda.telefono();
  37. System.out.println("Ingrese el nombre de un empleado(s)");
  38. discotienda.empleado();
  39. break;
  40.  
  41. case 2:
  42.  
  43.  
  44. cd.album();
  45.  
  46.  
  47. }
  48. }while(opcion!=3);
  49. }
  50. }
  51.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty