Java Program to Insert an Element in an Array

This is a Java Program to Insert an Element in a Specified Position in a Given Array.

Enter size of array and then enter all the elements of that array. Now enter the element you want to insert and position where you want to insert that element. We shift all the elements in the array from that location by one and hence insert the element easily.

Here is the source code of the Java Program to Insert an Element in a Specified Position in a Given Array. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.

  1.  import java.util.Scanner;
  2. public class Insert_Array 
  3. {
  4.     public static void main(String[] args) 
  5.     {
  6.         int n, pos, x;
  7.         Scanner s = new Scanner(System.in);
  8.         System.out.print("Enter no. of elements you want in array:");
  9.         n = s.nextInt();
  10.         int a[] = new int[n+1];
  11.         System.out.println("Enter all the elements:");
  12.         for(int i = 0; i < n; i++)
  13.         {
  14.             a[i] = s.nextInt();
  15.         }
  16.         System.out.print("Enter the position where you want to insert element:");
  17.         pos = s.nextInt();
  18.         System.out.print("Enter the element you want to insert:");
  19.         x = s.nextInt();
  20.         for(int i = (n-1); i >= (pos-1); i--)
  21.         {
  22.             a[i+1] = a[i];
  23.         }
  24.         a[pos-1] = x;
  25.         System.out.print("After inserting:");
  26.         for(int i = 0; i < n; i++)
  27.         {
  28.             System.out.print(a[i]+",");
  29.         }
  30.         System.out.print(a[n]);
  31.     }
  32. }

Output:

$ javac Insert_Array.java
$ java Insert_Array 
 
Enter no. of elements you want in array:6
Enter all the elements:
2
4
6
9
4
5
Enter the position where you want to insert element:3
Enter the element you want to insert:7
After inserting:2,4,7,6,9,4,5

Sanfoundry Global Education & Learning Series – 1000 Java Programs.

advertisement
advertisement

Here’s the list of Best Books in Java Programming, Data Structures and Algorithms.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.