题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
输入整型数组和排序标识,对其元素按照升序或降序进行排序
http://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309
while True:
try:
a = input()
b = map(int,input().split()) #需要整型才能正确排序
c = int(input())
if c==0:
d = sorted(b,reverse= False) #注意这是int型列表,用join需要map函数
if c == 1:
d = sorted(b, reverse = True)
print(" ".join(map(str,d))) #list变str输出
except:
break