Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to insert an element at a specific index in an array with Java

1 Answer

0 votes
import java.util.Arrays;

public class InsertElement {

    public static void main(String[] args) {
        int[] arr = {4, 9, 8, 6, 5, 7};
        int index = 2; 
        int newElement = 100;

        int[] newArray = insertElement(arr, index, newElement);

        System.out.println(Arrays.toString(newArray));
    }

    public static int[] insertElement(int[] originalArray, int index, int newElement) {
        // Create a new array with one more element than the original array
        int[] newArray = new int[originalArray.length + 1];

        // Copy elements from the original array to the new array
        for (int i = 0, j = 0; i < newArray.length; i++) {
            if (i == index) {
                newArray[i] = newElement;
            } else {
                newArray[i] = originalArray[j++];
            }
        }

        return newArray;
    }
}


   
/*
run:
   
[4, 9, 100, 8, 6, 5, 7]
  
*/


 



answered Feb 20, 2025 by avibootz

Related questions

...