0
已解决
周旭东
初级光能
初级光能
#include<bits/stdc++.h>
#include<algorithm>
#include<cstdio>
#include<climits>
#include<queue>
using namespace std;
int n,k,s,t,v;
double f;
int main()
{
cin>>n;
while(cin>>k)
{
if(k==-1)
break;
if(n%2!=0)
s+=k;
else{
v+=k;
t++;
}
}
if(n%2!=0)
cout<<s;
else {
f=v/t;
cout<<fixed<<setprecision(2)<<f;
}
return 0;
}
周旭东在2020-08-18 21:33:36追加了内容
请帮忙找一下错,谢谢