Computer Science, asked by shettyadi20023, 11 months ago

write a program to insert an element into an array at a given position​

Answers

Answered by mysterious0115
0

Answer:

import java.util.Arrays;

class xyz

{

public static void main(String[] args)

{

int[] my_array = {25, 14, 56, 15, 36, 56, 77, 18, 29, 49};

// Insert an element in 3rd position of the array (index->2, value->5)

int Index_position = 2;

int newValue = 5;

System.out.println("Original Array : "+Arrays.toString(my_array));

for(int i=my_array.length-1; i > Index_position; i--)

{

my_array[i] = my_array[i-1];

}

my_array[Index_position] = newValue;

System.out.println("New Array: "+Arrays.toString(my_array));

}

}

hope it helps mrk brainliest!!!

Similar questions