feat(cp): modified cp & some ch 1 to 4 examples

This commit is contained in:
Rafa Muñoz
2024-09-13 10:56:31 +02:00
parent c3f1b2b418
commit f2e603c38e
8 changed files with 19 additions and 50 deletions

View File

@@ -6,7 +6,7 @@ public class Ej03_EjemploMatrices {
public static void main(String[] args) {
int m[][] = new int[4][3];
int m2[][] = new int[][] {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
// int m2[][] = new int[][] {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
int cont = 1;
for (int i = 0; i < m.length; i++) {