8:30 wvnet.brightspace.com Write a program that contains a method avgWithoutSmallest. The method should compute the average of an array of values, except for the smallest one, in a single loop. In the loop, update the sum and the smallest value. After the loop, return the average of all numbers except the smallest one. The main program should then display the returned value. Hints: The main program should declare and populate the array. Then it should call the method, and display the value returned from the method. The method should have ONE loop that: • Calculates the running total • See "Sum and Average" under Common Algorithms section 6.3 • Tracks the value of the smallest number • See "Maximum and Minimum" under Common Algorithms section 6.3 After the loop, calculate the average of all numbers EXCEPT the smallest • The total will be (sum - smallest) You will divide hv (array length - 11 Submit Cancel
8:30 wvnet.brightspace.com returned from the method. The method should have ONE loop that: • Calculates the running total • See "Sum and Average" under Common Algorithms section 6.3 • Tracks the value of the smallest number • See "Maximum and Minimum" under Common Algorithms section 6.3 After the loop, calculate the average of all numbers EXCEPT the smallest • The total will be (sum - smallest) • You will divide by (array.length - 1) • Remember to typecast this as a double Create a small array (3 or 4 numbers) at first and check your program's results with a calculator. Grade your assignment using the rubric before you submit it. This will help you avoid missing points unnecessarily. Start Date May 2, 2022 7:45 AM Due Date May 2, 2022 10:00 AM Submit Cancel
8:30 wvnet.brightspace.com Write a program that contains a method avgWithoutSmallest. The method should compute the aver
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
8:30 wvnet.brightspace.com Write a program that contains a method avgWithoutSmallest. The method should compute the aver
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!