题解 1129: C语言训练-排序问题(2)

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

三种方法解排序(C语言)

摘要:解题思路:注意事项:参考代码:方法1:使用冒泡排序#include // 冒泡排序函数 void bubbleSort(int arr[], int n) {     int temp;    ……

哈哈哈哈哈

摘要:解题思路:注意事项:参考代码:x=list(map(int,input().split()))x.sort(reverse=True)for i in x:    print(i,end=' ……

C语言训练-排序问题<2>

摘要:x=list(map(int,input().split())) x.sort(reverse=True) for i in x:     print(i,end=&#39; &#39;)解题思……