Question: 1-Create a one-dimensional array of 99 double values. Then, use a for loop to add a random number from 0 to 100 to each element

1-Create a one-dimensional array of 99 double values. Then, use a for loop to add a random number from 0 to 100 to each element in the array. To do that, use the random method of the Math class to get a double value between 0.0 and 1.0 and multiply it by 100

like this

Math.random() * 100

2-Use an enhanced for loop to sum the values in the array. Then, calculate the average value and print that value on the console like this

Average: 50.9526671843517

3-Use the sort method of the Arrays class to sort the values in the array, and print the median value (the 50th value) on the console

like this

Median: 52.18369291650803 -Print the 9th value of the array on the console and every 9th value after that.

like this

position: 9 8.927702403161032

position: 18 14.0531287498060076

...

position: 99 22.471670293184822

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!