mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
11 lines
233 B
Java
11 lines
233 B
Java
class C {
|
|
void sort(int[] array) {
|
|
int j;
|
|
for (int i = 0; i < array.length; i++) {
|
|
j = 0;
|
|
boolean bool = array[j] > array[i];
|
|
while (j<i)&&(array[j]>array[i])
|
|
|
|
}
|
|
}
|
|
} |