fork download
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package experimento2;
  6.  
  7. import java.io.BufferedReader;
  8. import java.io.InputStreamReader;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11.  
  12.  
  13. public class CD {
  14. public void album() throws Exception
  15. {
  16. String z;
  17. String h = "XXXX";
  18. int opcion2 = 0;
  19.  
  20. System.out.println(" Para salir de esta opción presione XXXX");
  21.  
  22. do
  23. {
  24. System.out.println(" La variable h es "+h);
  25. System.out.println(" Introducir el nombre del álbum");
  26. z = lector.readLine();
  27. if ( z == h)
  28. {
  29. opcion2 = 2;
  30. }
  31. else
  32. {
  33. String j = z;
  34. List<String>album=new ArrayList<String>();
  35. album.add(j);
  36. }
  37. /// Preguntar por cuántas canciones hay en el álbum y posteriormente usar el método canciones. En el método está la lista ///
  38.  
  39. }while(opcion2!=2);
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. }
  48.  
  49.  
  50. }
  51.  
  52.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty