135k views
3 votes
(in java please) when analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. this adjustment can be done by normalizing to values between 0 and 1, or throwing away outliers.for this program, adjust the values by dividing all values by the largest value. the input begins with an integer indicating the number of floating-point values that follow. assume that the list will always contain fewer than 20 floating-point values.output each floating-point value with two digits after the decimal point, which can be achieved as follows:system.out.printf("%.2f", yourvalue);ex: if the input is:5 30.0 50.0 10.0 100.0 65.0the output is:0.30 0.50 0.10 1.00 0.65 the 5 indicates that there are five floating-point values in the list, namely 30.0, 50.0, 10.0, 100.0, and 65.0. 100.0 is the largest value in the list, so each value is divided by 100.0.for coding simplicity, follow every output value by a space, including the last one.

User Imhotep
by
8.3k points

1 Answer

4 votes

Answer:

Explanation: This is worht more than 10 points but thanks

User Starskythehutch
by
8.4k points