while True: try: num=int(input()) arr=input().split() rever=int(input()) se1=list(map(int,arr))#为了排序,先将序列str转换成int元素 if rever==1: print(" ".join(map(str,sorted(se1,reverse=True)))) else: print(" ".join(map(str,sorted(se1,rev...