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(UtilsArrays): added
This commit is contained in:
15
src/tutorialJava/capitulo4_Arrays/EjemploMetodos.java
Normal file
15
src/tutorialJava/capitulo4_Arrays/EjemploMetodos.java
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user