题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#

输入整型数组和排序标识,对其元素按照升序或降序进行排序

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
全部评论

相关推荐

牛客717484937号:双飞硕没实习挺要命的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务