Fill in the skeleton below for a method named zeroOdds that takes an array of in
ID: 3804328 • Letter: F
Question
Fill in the skeleton below for a method named zeroOdds that takes an array of integers as a parameter. The method should return a new array that has only the even values of the original array, with the odd values replaced by zeroes. For example, if the array arr1 = {2,7,-1,8,5}, then the call zeroOdds(arr1) should return the array {2,0,0,8,0}. Note that your code should work for arrays of length zero and that a zero length array with the odds zeroed out is another zero length array.
private static int[] zeroOdds(int[] array) {
Explanation / Answer
private static int[] zeroOdds(int[] array) {
for (int i = 0; i < array.length; i++) {
if(array[i] %2 == 1)
{
array[i] = 0;
}
}
return array;
}
This will help.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.