w3resource

Java: Create a new array of length 2 from two arrays of integers with three elements and the new array will contain the first and last elements from the two arrays

Java Basic: Exercise-77 with Solution

Write a Java program to create an array of length 2 from two integer arrays with three elements. The newly created array will contain the first and last elements from the two arrays.

Sample Solution:

Java Code:

import java.util.Arrays;

public class Exercise77 {
    public static void main(String[] args) {
        // Define two integer arrays (array1 and array2)
        int[] array1 = {50, -20, 0};
        int[] array2 = {5, -50, 10};
        
        // Print the elements of array1
        System.out.println("Array1: " + Arrays.toString(array1));
        
        // Print the elements of array2
        System.out.println("Array2: " + Arrays.toString(array2));
        
        // Create a new array, array_new, with elements from array1 and array2
        int[] array_new = {array1[0], array2[2]};	
        
        // Print the elements of the new array, array_new
        System.out.println("New Array: " + Arrays.toString(array_new));
    }
}

Sample Output:

Array1: [50, -20, 0]                                                   
Array2: [5, -50, 10]                                                   
New Array: [50, 10]

Pictorial Presentation:

Java exercises: Create a new array of length 2 from two arrays of integers with three elements and the new array will contain the first and last elements from the two arrays

Flowchart:

Flowchart: Java exercises: Create a new array of length 2 from two arrays of integers with three elements and the new array will contain the first and last elements from the two arrays

Java Code Editor:

Previous: Write a Java program to test if the first or the last elements of two arrays of integers are same.
Next: Write a Java program to test that a given array of integers of length 2 contains a 4 or a 7.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/basic/java-basic-exercise-77.php