
Java Array Exercises: Find the number of even and odd integers in a given array of integers
Java Array: Exercise-27 with Solution
Write a Java program to find the number of even and odd integers in a given array of integers.
Pictorial Presentation:

Sample Solution:
Java Code:
import java.util.Arrays;
public class Exercise27 {
public static void main(String[] args)
{
int[] array_nums = {5, 7, 2, 4, 9};
System.out.println("Original Array: "+Arrays.toString(array_nums));
int ctr = 0;
for(int i = 0; i < array_nums.length; i++)
{
if(array_nums[i] % 2 == 0)
ctr++;
}
System.out.println("Number of even numbers : "+ctr);
System.out.println("Number of odd numbers : "+(array_nums.length-ctr));
}
}
Sample Output:
Original Array: [5, 7, 2, 4, 9] Number of even numbers : 2 Number of odd numbers : 3
Flowchart:

Java Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Java program to move all 0's to the end of an array.
Next: Write a Java program to get the difference between the largest and smallest values in an array of integers.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming