比赛 |
16暑期热身练习 |
评测结果 |
RRRRRRRRRR |
题目名称 |
自动统计机 |
最终得分 |
0 |
用户昵称 |
A8_LQC |
运行时间 |
0.002 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2016-07-01 10:44:12 |
显示代码纯文本
#include<stdio.h>
#include<iostream>
#include<algorithm>
using namespace std;
int main(){
int a=0,all=0,b[500]={0},x;
double pj=0,zw=0;
freopen("stats.in","r",stdin);
freopen("stats.out","W",stdout);
scanf("%d",&a);
for(x=0;x<a;x++){
scanf("%d",&b[x]);
all+=b[x];
}
pj=(double)all/a;
sort(b,b+x);
if(a%2!=0)zw=b[x/2];
else if(a%2==0){
zw=(double)(b[x/2-1]+b[x/2])/2;
}
printf("%lf\n%lf",pj,zw);
return 0;
}