Question
Write a java program where 7 judges award a score between 0 and 10, where each score may be a floating-point value. The highest and
Write a java program where 7 judges award a score between 0 and 10, where each score may be a floating-point value. The highest and lowest scores are thrown out and the remaining five scores are added together. The sum is then multiplied by the degree of difficulty for that dive. The degree of difficulty ranges from 1.2 to 3.8 points. The total is then multiplied by 0.6 to determine the divers score. Write a Java program in the standard mode that inputs a degree of difficulty and seven judges scores, and outputs the overall score for that dive. The program should ensure that all inputs are within the allowable data ranges.
To make your programming easier, if a number is out of range (greater than the upper limit or less than the lower limit), then let the program replace it with upper or lower limit numbers. Save the file as ExtraCredit.java.
Hint: Use a double Array (that holds only double numbers) and a for loop statement to store each Judges score Hint: Use a variable with the initial value of 0 for the highest score, and a variable with the initial value of 10 for the lowest score, in order to find out the highest and the lowest scores. You should compare each score to these variables.
*** sample output Please enter the difficulty level(1.2 - 3.8): 1 Enter the score of judge 1: 5 Enter the score of judge 2: 4
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