Question: Write a Java method called countOccurrences) that takes an array of integers as input and prints the number of times each number in the array

Write a Java method called countOccurrences) that takes an array of integers as input and prints the number of times each number in the array occurs. Use a HashMap. For example, given the array Integer a 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 8, 6, 7, 8, 1, 1, 1, 8, 8, 2, 4, 5, 7}; calling countEach(a2); will display 0 occurs 1 times. 1 occurs 5 times. 2 occurs 3 times 3 occurs 2 times 4 occurs 3 times. 5 occurs 2 times. 6 occurs 2 times. 7 occurs 3 times. 8 occurs 5 times. 9 occurs 1 times. 10 occurs 1 times
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
