how to solve this easy problem?????


Write a Java program that would input ten numbers form the user and print the ten numbers sorted in descending order.

Well, there are sorting methods, for example, see the API for Arrays. You could, for example, load the numbers into an array and let the sort() method do the work.

If you're supposed to write the sort yourself, you're probably looking for a bubbleSort: go through the list of numbers, and if any adjacent numbers are out of order, switch their order. Repeat until nothing changes.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.