Exe 9 统计文件中的整型数字的平均值(去掉一个最大和最小值)

#include <iostream>
#include <fstream>

using namespace std;

 

int a[100]; //存放从文件中读入的整数值的数组
int n = 0;  //记录数组中

 

//返回数组中的最大值

int Maxa(int a[],int n)
{
 int max = a[0];
 for(int i=1;i<n;i++)
 {
  if(a[i]>max)
   max = a[i];
 }
 return max;
}

 

//返回数组中的最小值

int Mina(int a[],int n)
{
 int min = a[0];
 for(int i=1;i<n;i++)
  if(a[i]<min)
   min = a[i];
 return min;
}

 

 

int main()
{
 ifstream in("score.txt",ios::in);
 if(!in)
 {
  cerr<<"open file error!"<<endl;
  exit(1);
 }
 //将文件中的数字依次读入到全局数组a[]中去
 while(in.peek()!=EOF)
  in>>a[n++];
    in.close(); //关闭文件

 int sum = 0; //统计数组中的内容的大小
 for(int i=0;i<n;i++)
  sum+=a[i];
 int max = Maxa(a,n);
 int min = Mina(a,n);
 float average = (sum-max-min)/(n-2);
 cout<<" />The average of the score is: "<<average<<endl<<endl;
 return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值