Using Java, Define a method named sortArray that takes an array of integers and the number of elements in the array as parameters. Method sortArray() modifies the array parameter by sorting the elements in descending order (highest to lowest). Then write a main program that reads a list of integers from input, stores the integers in an array, calls sortArray(), and outputs the sorted array. The first input integer indicates how many numbers are in the list. Assume that the list will always contain less than 20 integers. Ex: If the input is: 5 10 4 39 12 2 the output is: 39,12,10,4,2, For coding simplicity, follow every output value by a comma, including the last one. Your program must define and call the following method: public static void sortArray(int[] myArr, int arrSize)
Using Java, Define a method named sortArray that takes an array of integers and the number of elements in the array as parameters. Method sortArray() modifies the array parameter by sorting the elements in descending order (highest to lowest). Then write a main program that reads a list of integers from input, stores the integers in an array, calls sortArray(), and outputs the sorted array. The first input integer indicates how many numbers are in the list. Assume that the list will always contain less than 20 integers.
Ex: If the input is: 5 10 4 39 12 2
the output is: 39,12,10,4,2,
For coding simplicity, follow every output value by a comma, including the last one.
Your program must define and call the following method:
public static void sortArray(int[] myArr, int arrSize)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images