Java program to arrange array in ascending order

Java program to arrange array in ascending order

Output:

Enter the number of elements to sort: 10
Enter the numbers to sort:
10 9 8 7 6 5 4 3 2 1
The Sorted Array is:
1 2 3 4 5 6 7 8 9 10

Implementation: