A+ Work




Write a Java application that allows a user to enter numbers into an array and then process them.
Enter the number of elements and the value of each element;
Your application will process the data entered and will display the results:
1.         Display the elements of the array, max 10 per line
2.         Find and display the max value and the index of this max;
3.         Display the Even elements;
4.         Sorts and displays the numbers from lowest to highest using Arrays.sort() method from java.util.Arrays class