Mask


私信TA

用户名:dotcpp0632994

访问量:410

签 名:

头发状况良好

等  级
排  名 2028
经  验 2497
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 无锡学院
专  业 软件工程

  自我简介:

TA的其他文章



参考代码:

#include<iostream>

#include<algorithm>

using namespace std;

const int N =310;

double a[N];

int main()

{

    int n;

    cin>>n;

    double sum=0;

    for(int i=0;i<n;i++)

    {

        cin>>a[i];

        sum+=a[i];

    }

    

    sort(a,a+n);

    

    sum-=a[0]+a[n-1];


    double ave=sum/(n-2);

    cout.precision(2);

    cout<<fixed<<ave<<" ";


    double max=0;

    for(int i=1;i<n-1;i++)

    {

        double temp=a[i]-ave;

        if(temp<0) temp=-temp;

        if(temp>=max) max=temp; 

    }


    cout<<fixed<<max<<endl;

    return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »