Which of the following require saving all the values from standard input (in an
ID: 3650618 • Letter: W
Question
Which of the following require saving all the values from standard input (in an array, say), and which could be implemented as a filter using only a fixed number of variables? For each, the input comes from standard input and consists of N real numbers between 0 and 1.Print the maximum and minimum numbers.
Print the kth smallest value.
Print the sum of the squares of the numbers.
Print the average of the N numbers.
Print the percentage of numbers greater than the average.
Print the N numbers in increasing order.
Print the N numbers in random order.
We have been using StdIn.readInt(), StdIn.isEmpty() so maybe it is useful here?