多组输入 第一行一个数字n 代表对n个数排序 (1 < n < 50) 第二行n个数字,表示排序的结果 每个数字都在1e9以内
请先登录再刷题,不会做的题目右上可以查看题解和答案~
多组输入 第一行一个数字n 代表对n个数排序 (1 < n < 50) 第二行n个数字,表示排序的结果 每个数字都在1e9以内
排序结果是升序输出“Ascending”, 降序输出“Descending order”,如果出现BUG 输出“The testing machine is out of order!”
3 1 2 3 3 3 2 1 3 1 2 1
Ascending Descending order The testing machine is out of order!
小白赛