Question: What: a java file containing your solution In this lab, you will learn how to combine loops with conditional statements. Problem: Write a program that
What: a java file containing your solution In this lab, you will learn how to combine loops with conditional statements. Problem: Write a program that given a finite sequence S of positive integers, you do not know beforehand how long this sequence is, determines the maximum and minimum element(s) and the number of occurrences of them in S. For example, in s: 3,4,2,7,2,5,4,2,2 the maximum of S is "7" and it occurs one time whereas the minimum of S is "2" and it occurs three times. Note: You might tell the user to mark the end of the sequence with a "O". 1/ Describe how you want to solve this problem: write this description as a comment at the top of your java file. The description should be free of typos and grammatically correct. 2/ Put together a Java code that addresses the above problem. Each instruction of your code should be commented to explain what it doet and why the whole piece of code is an actual solution to the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
