#32940: _ans


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

學校 : 臺北市私立延平高級中學
編號 : 197224
來源 : [203.72.178.3]
最後登入時間 :
2024-12-24 10:48:40

#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許劭頎)

學校 : 臺北市私立延平高級中學
編號 : 197089
來源 : [203.72.178.1]
最後登入時間 :
2025-06-13 17:36:28

bruh