问题描述
输入三个数,比较其大小,并从大到小输出。
输入格式
一行三个整数。
输出格式
一行三个整数,从大到小排序。
样例输入
33 88 77
样例输出
88 77 33
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
package adv175; import java.util.Arrays; import java.util.Scanner; public class Main { public static <T> void main(String[] args) { Scanner in = new Scanner(System.in); int[] array = new int[3]; array[0] = in.nextInt(); array[1] = in.nextInt(); array[2] = in.nextInt(); Arrays.sort(array); for (int i = 2; i >= 0; --i) { System.out.print(array[i] + " "); } in.close(); } } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼