HDU 2561 第二小整数 (排序)
Posted dwtfukgv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2561 第二小整数 (排序)相关的知识,希望对你有一定的参考价值。
题意:中文题。
析:输入后,排一下序就好。
代码如下:
#include <iostream> #include <cstdio> #include <algorithm> #include <queue> #include <vector> #include <cstring> #include <map> #include <cctype> using namespace std; const int maxn = 10 + 5; int a[maxn]; int main(){ int n, T; cin >> T; while(T--){ scanf("%d", &n); for(int i = 0; i < n; ++i) scanf("%d", &a[i]); sort(a, a+n); printf("%d\n", a[1]); } return 0; }
以上是关于HDU 2561 第二小整数 (排序)的主要内容,如果未能解决你的问题,请参考以下文章