Q. Program to sort the elements of an array in descending order.ExplanationIn this program, we need to sort the given array in descending order such that elements will be arranged from largest to smallest. This can be achieved through two loops. Outer loop will select a element and inner loop allow us to compare selected element with rest of the elements. Original array: Array after sorting: Elements will be sort in such a way that largest element will appear on extreme left which in this case is 8. Smallest element will appear on extreme right which in this case is 1. Algorithm
SolutionPythonOutput: Elements of original array: 5 2 8 7 1 Elements of array sorted in descending order: 8 7 5 2 1 COutput: Elements of original array: 5 2 8 7 1 Elements of array sorted in descending order: 8 7 5 2 1 JAVAOutput: Elements of original array: 5 2 8 7 1 Elements of array sorted in descending order: 8 7 5 2 1 C#Output: Elements of original array: 5 2 8 7 1 Elements of array sorted in descending order: 8 7 5 2 1 PHPOutput: Elements of original array: 5 2 8 7 1 Elements of array sorted in descending order: 8 7 5 2 1 Next Topic# |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India