Posterior a investigar en diferentes repositorios y páginas al terminar hemos dado con la respuesta que te enseñaremos ahora.
Ejemplo: agregue cada elemento en un array Java
importjava.util.Arrays;importjava.util.Scanner;publicclassSumOfElementsOfAnArraypublicstaticvoidmain(String args[])System.out.println("Enter the required size of the array :: ");Scanner s =newScanner(System.in);int size = s.nextInt();int myArray[]=newint[size];int sum =0;System.out.println("Enter the elements of the array one by one ");for(int i=0; i<size; i++)
myArray[i]= s.nextInt();
sum = sum + myArray[i];System.out.println("Elements of the array are: "+Arrays.toString(myArray));System.out.println("Sum of the elements of the array ::"+sum);
Puntuaciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)