Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Create a new array from a given array of integers, new array will contain the elements from the given array after the last element value 10

Java Basic: Exercise-103 with Solution

Write a Java program to create a new array from a given array of integers, new array will contain the elements from the given array after the last element value 10.

Pictorial Presentation:

Java Basic Exercises: Create a new array from a given array of integers, new array will contain the elements from the given array after the last  element value 10

Sample Solution:

Java Code:

import java.util.*; 
import java.io.*; 
 public class Exercise103 {
 public static void main(String[] args)
 {
	int[] array_nums = {11, 10, 13, 10, 45, 20, 33, 53};
    int result = 0; 
	System.out.println("Original Array: "+Arrays.toString(array_nums)); 
	
	int l = array_nums.length - 1;
	int[] new_array;
	while(array_nums[l] != 10)
		l--;
	new_array = new int[array_nums.length - 1 - l];
	for(int i = l + 1; i < array_nums.length; i++)
		new_array[i - l - 1] = array_nums[i];
	System.out.println("New Array: "+Arrays.toString(new_array)); 
  }
}

Sample Output:

Original Array: [11, 10, 13, 10, 45, 20, 33, 53]                       
New Array: [45, 20, 33, 53]

Flowchart:

Flowchart: Java exercises: Create a new array from a given array of integers, new array will contain the elements from the given array after the last  element value 10

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to check if a specified array of integers contains 10 or 30.
Next: Write a Java program to create a new array from a given array of integers, new array will contain the elements from the given array before the last element value 10.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe