本文共 596 字,大约阅读时间需要 1 分钟。
题目:
#include #include #include #include #include #include #include #include #include #include using namespace std;//const double E = 2.71828182845904523536;//const double PI= 3.14159265359int main(){ int C; cin >> C; while(C--){ int n; cin >> n; int h[2]= { 101,101}; int max= 0; int t; while(n--){ cin >> t; if(t< h[0] || t< h[1]){ h[max]= t; max= (h[0]>h[1])?0:1; } } t= (h[0]>h[1])?h[0]:h[1]; cout << t << endl; } return 0;}
转载于:https://www.cnblogs.com/miaoz/p/4183811.html