选择排序
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
读入一个 ,再读入 个数,用选择排序将他们按从大到小的顺序排列后输入。
输入格式
输入文件包含两行,第 行为一个正整数 ,,第 行为 个整数,每个数之间用一空格分隔。
输出格式
输出文件仅一行,为排好序的n个数,每个数之间用一个空格分隔。
5
23 77 17 98 65
98 77 65 23 17