Skip to content

Commit 7efc6e2

Browse files
authored
Update README.md
Signed-off-by: Josue Estrada <64668192+AbnerJosue@users.noreply.github.com>
1 parent 52ad886 commit 7efc6e2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ matriz[0][0] = 1; // Asigna el valor 1 al primer elemento (esquina superior izqu
149149
matriz[2][2] = 9; // Asigna el valor 9 al último elemento (esquina inferior derecha)
150150

151151
// Imprimir la matriz
152+
// Es una matriz de doble for
152153
for (int i = 0; i < matriz.length; i++) {
153154
for (int j = 0; j < matriz[i].length; j++) {
154155
System.out.print(matriz[i][j] + " ");

0 commit comments

Comments
 (0)