Question: 5 . 2 1 LAB: Adjust list by normalizing When analyzing data sets, such as data for human heights or for human weights, a common

5.21 LAB: Adjust list by normalizing
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 positive floating-point values.
Output each floating-point value with two digits after the decimal point, which can be achieved by executing
cout fixed setprecision(2); once before all other cout statements.
Ex: If the input is:
5
30.050.010.0100.065.0
the output is:
0.300.500.101.000.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.
573056.4560684.93z9y7
LAB
ACTIVITY
5.21.1: LAB: Adjust list by normalizing
010
5 . 2 1 LAB: Adjust list by normalizing When

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 Programming Questions!