题解 2058: [STL训练]Who's in the Middle

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

筛选

Who's in the Middle

摘要:解题思路:利用数组,冒泡排序注意事项:参考代码:#include<stdio.h>int main(){ long long int n,i,j; int arr[10000]; scanf("%ll……

c++stl sort简单解法

摘要:解题思路:sort函数在algorithm库中sort(a,a+i)升序排序注意事项:参考代码:#include<iostream> #include<iomanip>#include<math.h>……