#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
while (n--) {
int num;
float temp;
float ans = -1.0;
cin >> num;
while (num--) {
cin >> temp;
ans = max(ans, temp);
}
printf("%.2f\n", ans);
}
return 0;
};
因篇幅问题不能全部显示,请点此查看更多更全内容