package com.javarush.task.task07.task0728; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; /* В убывающем порядке */ public class Solution { public static void main(String[] args) throws IOException { 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) { for(int i = 0; i < array.length; i++) for(int j = 0; j < array.length-i-1; j++){ if(array[j] < array[j+1]){ int tmp = array[j+1]; array[j+1] = array[j]; array[j] = tmp; } } } }