Question: How do I change my code so it handles this test case: [2,3,2,2,3,2]: 2 - terminating value 3 - the first input 2 - is

How do I change my code so it handles this test case:
[2,3,2,2,3,2]:
2 - terminating value
3 - the first input
2 - is the second input but since it is the terminating value, and we do not have 2 numbers , it prompts user to enter again
2 - is the input user does again, but it is invalid, and program asks again
3 - is the second input that works
2 - closing terminating value
 How do I change my code so it handles this test
case: [2,3,2,2,3,2]: 2 - terminating value 3 - the first input 2
- is the second input but since it is the terminating value,

1. TwoLargest Write your code in the file Twolargest.java, your file has to have this exact name with T and L capitalized. You must use the IO module to read inputs and output your answers. When prompting the user, use System.out,print) or System.outprintino. Write a program that takes a set of numbers and determines which are the two largest numbers Ask the user for the following information, in this order 1. A terminating value (real number. The user will enter this value again later, to indicate that he or she is finished providing input 2. A sequence of real numbers. Keep asking for numbers until the terminating value is entered again.Make sure the user inputs at least two numbers before reentering the terminating value. Compute and output the largest and second-largest real number, in that order. It is possible for the largest and second-largest numbers to be the same if the sequence contains duplicate numbers). Example: java TwoLargest 123.3 (this is the terminating value, not part of the set of numbers ] 17.0 23.5 10.0 15.2 30.0 8.0 16.0 123.3 (this is the terminating value again, indicating that the user is done RESULTS TO OUTPUT (in this order) 30.0 23.5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!