- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogram.java
More file actions
Latest commit
17 lines (11 loc) · 605 Bytes
/
Copy pathprogram.java
File metadata and controls
17 lines (11 loc) · 605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
publicclassprogram {
publicstaticvoidmain(Stringargs[]) {
intsize = methods.inputNum("Введите размер массива: ");
System.out.println("\nСгенерирован изначальный массив: ");
int[] originalArray = methods.fillArray(size);
methods.showArray(originalArray);
methods.quickSort(originalArray, 0, originalArray.length - 1);
System.out.println("\nОтсортированный массив с помощью быстрой сортировки: ");
methods.showArray(originalArray);
}
}