public static void sort(int[] array) {
//write your code here
int temp = 0;
Arrays.sort(array);
for (int i = 0; i <= array.length - 1 - i; i++)
while (array[i] < array[array.length - 1]) {
temp = array[i];
array[i] = array[array.length - 1 - i];
array[array.length - 1 - i] = temp;
}
}
}
package com.codegym.task.task07.task0728;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
/*
In decreasing order
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int[] array = new int[20];
for (int i = 0; i < 20; i++) {
array[i] = Integer.parseInt(reader.readLine());
}
sort(array);
for (int x : array) {
System.out.println(x);
}
}
public static void sort(int[] array) {
//write your code here
for (int i = array.length - 1; i >= 0; i--){
array[i] = array.length - i ;
}
}
}