Main.java 594 B

12345678910111213141516171819202122232425
  1. class Main {
  2. public static void main(String[] args) {
  3. // Es un arreglo de 2 dimensiones.
  4. int matriz[][];
  5. // Define el tamaño de la matriz.
  6. int numeros[][] = new int[4][4];
  7. // Inicializa la matriz con valores.
  8. int datos[][] = {
  9. {1, 2, 3, 4},
  10. {5, 6, 7, 8},
  11. {9, 10, 11, 12},
  12. {13, 14, 15, 16}
  13. };
  14. // Itera sobre los elementos de la matriz.
  15. for (int x = 0; x < datos.length; x+=1) {
  16. for (int y = 0; y < datos[x].length; y+=1) {
  17. System.out.println("Posición [" + x + "][" + y + "]: " + datos[x][y]);
  18. }
  19. }
  20. }
  21. }