c语言杭电1029Ignatius and the Princess IV

#include<stdio.h>
#include<iostream>
#include<algorithm>
using namespace std;
int a[999999];//要定义为全局变量才行,否则会溢出。
int main(){
 int n,i,j=0;
 while(~scanf("%d",&n)){
  for(i=0;i<n;i++){
   scanf("%d",&a[i]);
  }
  sort(a,a+n);
  j=(n+1)/2;
  printf("%d\n",a[j]);
 }
 return 0;
}

你可能感兴趣的:(c语言杭电1029Ignatius and the Princess IV)