本文主要是介绍Who's in the Middle poj 2388,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
很简单,排个序就行了
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include<iostream>
using namespace std;
int a[10050];
bool cmp(int a,int b)
{return a<b;
}
int main()
{int n;cin>>n;for(int i=0; i<n; ++i)cin>>a[i];sort(a,a+n,cmp);cout<<a[n/2]<<endl;
}
这篇关于Who's in the Middle poj 2388的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!