Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - Write a method to copy even numbers from one plastic array to another, written in java.
Write a method to copy even numbers from one plastic array to another, written in java.
This is a class in the java.util package.

public int[]copyIntArray(int[]arr){

int[]array = new int[arr . length];

int I = 0;

for(int j:arr){

If (j%2==0)

array[i++]= j;

}

Returns Arrays.copyOf(array, i);

}