mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/tutorialjava2024-25.git
synced 2025-11-10 02:13:07 +01:00
feat(cp): modified cp & some ch 1 to 4 examples
This commit is contained in:
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user