Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
68087 ‬朱宸瑜 寻找第二小的数 C++ 解答错误 0 0 MS 252 KB 335 2023-02-02 14:04:54

Tests(0/1):


#include <bits/stdc++.h> using namespace std; int small,sesmall,num,c,n; int main(){ cin>>c; while(c--){ small=101; sesmall=101; cin>>n; while(n--){ cin>>num; if(num<small) small=num; if(num>small&&num<sesmall) sesmall=num; } if(sesmall<=101) cout<<sesmall; else cout<<"NO"; } return 0; }


测评信息: