Question
Write a program that reads the integers between 1 and 100 and counts the occurrences of each. Assume the input ends with 0. For example:
Write a program that reads the integers between 1 and 100 and counts the occurrences of each. Assume the input ends with 0. For example: Input is : 1 2 1 4 3 2 0 The occurrence of 1 is 2 The occurrence of 2 is 2 The occurrence of 3 is 1 The occurrence of 4 is 1 I have already started to write out the program: Scanner input = new Scanner(System.in); int [] occ = new int [100]; int num; num = input.nextInt(); while ( num > 0) { occ[ num - 1 ]++; num = input.nextInt(); } Please finish the program. We use Java 8 and Eclipse. Make sure the program runs correctly. Test the program by running the example given above. Please attach a screenshot of this. Thanks!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started