how to add array elements in java code example
Example 1: sum numbers in array java
public class Exercise2 {
public static void main(String[] args) {
int my_array[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int sum = 0;
for (int i : my_array)
sum += i;
System.out.println("The sum is " + sum);
}
}
Example 2: how to append to an array in java
import java.util.Arrays;
class ArrayAppend {
public static void main( String args[] ) {
int[] arr = { 10, 20, 30 };
System.out.println(Arrays.toString(arr));
arr = Arrays.copyOf(arr, arr.length + 1);
arr[arr.length - 1] = 40;
System.out.println(Arrays.toString(arr));
}
}
Example 3: java array add element
List<String> where = new ArrayList<String>();
where.add(element);
where.add(element);
String[] simpleArray = new String[ where.size() ];
where.toArray( simpleArray );
Example 4: java add element to existing array
String[] rgb = new String[] {"red", "green"};
String[] rgb2 = new String[rgb.length + 1];
System.arraycopy(rgb, 0, rgb2, 0, rgb.length);
rgb2[rgb.length] = "blue";
rgb = rgb2;
Example 5: how to add a number to an array in java
List<Integer> myList = new ArrayList<Integer>();
myList.add(5);
myList.add(7);
Example 6: add each element in an array java
import java.util.Arrays;
import java.util.Scanner;
public class SumOfElementsOfAnArray {
public static void main(String args[]){
System.out.println("Enter the required size of the array :: ");
Scanner s = new Scanner(System.in);
int size = s.nextInt();
int myArray[] = new int [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);
}
}