fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. System.out.println("\f");
  13. String [][] mat = matrizPrincipal();
  14. System.out.println("1.Listar atores e suas respectivas temporadas.");
  15. Scanner in = new Scanner(System.in);
  16. String msg = in.nextLine();
  17. int opcao = Integer.parseInt(msg);
  18. switch(opcao) {
  19. case 1:
  20. System.out.println("Digite a temporada à se verificar");
  21. String temporada = in.nextLine();
  22. String resultado2 = imprimeMatrizQualTemporada(temporada,mat);
  23. System.out.println("Personagens nesta Temporada:" +resultado2);
  24. break;
  25. }
  26. }
  27.  
  28. public static String [][] matrizPrincipal() {
  29. String [] [] matriz = new String [2] [6];
  30. matriz[0][0] = "Robin Arryn";
  31. matriz[0][1] = "Lino Facioli";
  32. matriz[0][2] = "145";
  33. matriz[0][3] = "Vivo";
  34. matriz[0][4] = "Arryn";
  35. matriz[0][5] = "Masculino";
  36.  
  37. matriz[1][0] = "Yohn Royce";
  38. matriz[1][1] = "Rupert Vansittart";
  39. matriz[1][2] = "45";
  40. matriz[1][3] = "Vivo";
  41. matriz[1][4] = "Arryn";
  42. matriz[1][5] = "Masculino";
  43. return matriz;
  44. }
  45.  
  46. public static String imprimeMatrizQualTemporada(String temporada, String [] [] mat) {
  47. for(int i = 0; i < mat.length; i++) {
  48. if(mat[i][2].contains(temporada)){
  49. System.out.println(mat[i][0] + "\n");
  50. }
  51. }
  52. return "Não encontramos um personagem com este nome";
  53. }
  54.  
  55. }
Success #stdin #stdout 0.13s 321088KB
stdin
1
4
stdout

1.Listar atores e suas respectivas temporadas.
Digite a temporada à se verificar
Robin Arryn

Yohn Royce

Personagens nesta Temporada:Não encontramos um personagem com este nome