Question 1
Create code that prompts the user for 10 integers between 0 and 100. Once inputted place
these numbers in order from highest to lowest and print them into the command prompt.
Question 2
Using a Double FOR LOOP, create code that repeatedly prompts the user for values and
store them into a 5x5 array. The values need to be able to have decimal places. Once the 2D
array is full (25 values), stop prompting for the values. Print the 2D array in an organised
array, in addition to the sum, max and min.
Question 3
Continuing from the code written in question 2, write code which rounds down all values in
the 2d array from question 2, and prints them into an organised array. Hint: for C++ you will
need to make an integer equal a float to cut off the decimal places.