Question
Intro to Java Loops Question: A). Write a program that reads integers, finds the largest of them, and counts its occurrences. Do not use arrays
Intro to Java Loops Question:
A). Write a program that reads integers, finds the largest of them, and counts its occurrences. Do not use arrays in the program. Assume that the input ends with number 0. Suppose that you entered 3 5 2 5 5 5 0; the program finds that the largest is 5 and the occurrence count for 5 is 4. (Hint: Maintain two variables, max and count. max stores the current max number, and count stores its occurrences. Initially, assign the first number to max and 1 to count. Compare each subsequent number with max. If the number is greater than max, assign it to max and reset count to 1. If the number is equal to max, increment count by 1.) Provide proper comments for your codes.
Here are sample runs of the program:
Sample 1:
Enter numbers: 3 5 2 5 5 5 0
The largest number is 5
The occurrence count of the largest number is 4
Sample 2:
Enter numbers: 3 6 5 4 2 4 5 4 5 5 0
The largest number is 6
The occurrence count of the largest number is 1
B) Analysis:
(Describe the problem including input and output in your own words.)
C) Design:
(Describe the major steps for solving the problem.)
D) Testing: (Describe how you test this program)
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