An open API service indexing awesome lists of open source software.

https://github.com/aadewunmi/sort_array_descending_order

Java Array Tutorial: Sort an array of integers in descending order.
https://github.com/aadewunmi/sort_array_descending_order

arrays java-8 sort

Last synced: 7 months ago
JSON representation

Java Array Tutorial: Sort an array of integers in descending order.

Awesome Lists containing this project

README

          

# Java Arrays Challenge: Sort a list of integers in Descending Order.

This is a Java program that sorts an array of integers in descending order.
The program is set up so that the numbers to sort are read in from the keyboard.
Methods implemented are: getIntegers, printArray, and sortIntegers
- getIntegers returns an array of entered integers from keyboard
- printArray prints out the contents of the array
- sortIntegers should sort the array and return a new array containing the sorted numbers

## Installation:

Download or clone the repository on your local machine.

```sh
$ git clone https://github.com/AAdewunmi/Sort_Array_Descending_Order.git
$ cd Sort_Array_Descending_Order
```
## Console display :

![Image of Console](src/com/JavaArrays/screenshot.png )