#32940: _ans


yp11151049@yphs.tp.edu.tw (901-26李文睿)


#include<bits/stdc++.h>
using namespace std;
int main(){
    int T,n;
    cin>>T;
    while(T>0){
        cin>>n;
        double t,sum=0;
        for(int i=0;i<n;i++){
            cin>>t;
            sum+=t;            
        }
        cout<<fixed<<setprecision(2)<<sum/n<<endl;
        T--;
    }    
}

#33510: Re: ans


yp11151138@yphs.tp.edu.tw (908-33許劭頎)


bruh