首页 > 代码库 > poj2388解题报告(排序)
poj2388解题报告(排序)
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;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。