mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/tutorialjava2024-25.git
synced 2025-11-09 18:03:09 +01:00
16 lines
268 B
Java
16 lines
268 B
Java
package tutorialJava.capitulo4_Arrays;
|
|
|
|
import tutorialJava.UtilsArrays;
|
|
|
|
public class EjemploMetodos {
|
|
|
|
public static void main(String[] args) {
|
|
int array[] = new int[10];
|
|
UtilsArrays.inicializarArray(array, 10000);
|
|
UtilsArrays.muestraArray(array);
|
|
|
|
}
|
|
|
|
|
|
}
|