Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 1, 2021 18:53
Show Gist options
  • Save parzibyte/9821e69f200b46c09b1450de56862f52 to your computer and use it in GitHub Desktop.
Save parzibyte/9821e69f200b46c09b1450de56862f52 to your computer and use it in GitHub Desktop.
static void imprimirMatriz(int[][] matriz) {
for (int y = 0; y < matriz.length; y++) {
for (int x = 0; x < matriz[y].length; x++) {
int numeroActual = matriz[y][x];
System.out.printf("%5d", numeroActual);
}
System.out.println();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment