Question: Write a method named getPercentEven that accepts an array of integers as a parameter and returns the percentage of the integers in the array that
Write a method named getPercentEven that accepts an array of integers as a parameter and returns the percentage of the integers in the array that are even numbers. For example, if an array a stores {6, 4, 9, 11, 5}, then your method should return 40.0 representing 40% even numbers. If the array contains no even elements or is empty, return 0.0. Do not modify the array passed in.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
