码迷,mamicode.com
首页 > 其他好文 > 详细

poj2388解题报告(排序)

时间:2014-06-18 23:53:01      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   http   代码   for   

 

 

 

POJ 2388,题目链接http://poj.org/problem?id=2388

题意:

水题一道

给定n个数,输出中间值,可以用sort,干脆快捷

代码:

//396K	32MS
#include <cstdio>
#include <algorithm>

int buf[10000];

int main()
{
	int cowsNum;
	scanf("%d", &cowsNum);

	int temp;
	for (int i=0; i<cowsNum; ++i)
	{
		scanf("%d", &temp);
		buf[i] = temp;
	}
	std::sort(buf, buf+cowsNum);
	printf("%d\n", buf[cowsNum/2]);

	return 0;
}

 

 

 

 

 

poj2388解题报告(排序),布布扣,bubuko.com

poj2388解题报告(排序)

标签:style   class   blog   http   代码   for   

原文地址:http://www.cnblogs.com/songcf/p/3789717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!