标签:find class integer out std div names NPU return
http://acm.hdu.edu.cn/showproblem.php?pid=2071
#include <bits/stdc++.h> using namespace std; double a[111]; int main() { int M; cin>>M; for(int i=1;i<=M;i++) { int n; cin>>n; for(int i=1;i<=n;i++) { cin>>a[i]; for(int j=i;j>=2;j--) { if(a[j]<=a[j-1]) swap(a[j],a[j-1]); } } for(int i=1;i<=n;i++) { if(i==n) printf("%.2f\n",a[n]); } } return 0; }
标签:find class integer out std div names NPU return
原文地址:https://www.cnblogs.com/zlrrrr/p/9226212.html