标签: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
标签:style class blog http 代码 for
原文地址:http://www.cnblogs.com/songcf/p/3789717.html