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(ch 5): independence day
This commit is contained in:
@@ -149,6 +149,19 @@ public class UtilsArrays {
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @param m
|
||||
*/
|
||||
public static void imprimeMatriz (char m[][]) {
|
||||
for (int i = 0; i < m.length; i++) {
|
||||
for (int j = 0; j < m[i].length; j++) {
|
||||
System.out.print(m[i][j] + " ");
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static void ordenaArray (int a[], boolean asc) {
|
||||
boolean hayIntercambios;
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user