提问:输入n(n>=3)个数,并将其中的数据从大到小顺序输出
网友回答:
你要用什么语言做这个?任意语言的话,python 最简单
程序(三行代码完成)
s=list(map(int,input().split())) s.sort(reverse=True) print(s)
测试结果
10 37 67 94 76 65 74 51 57 14 [94, 76, 74, 67, 65, 57, 51, 37, 14, 10]
提问:输入n(n>=3)个数,并将其中的数据从大到小顺序输出
网友回答:
你要用什么语言做这个?任意语言的话,python 最简单
程序(三行代码完成)
s=list(map(int,input().split())) s.sort(reverse=True) print(s)
测试结果
10 37 67 94 76 65 74 51 57 14 [94, 76, 74, 67, 65, 57, 51, 37, 14, 10]