1-Create a one-dimensional array of 99 double values. Then, use a for loop to add a random...

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 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
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: