问题及代码
/*
* Copyright (c) 2014, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作 者:辛彬
* 完成日期:2014年 11 月 25 日
* 版 本 号:v1.0
*
* 问题描述: 输出考得最高成绩和最低成绩的同学的人数。
* 输入描述:人数及成绩。
* 程序输出:最高成绩和最低成绩的同学的人数;
*/
#include <iostream>
using namespace std;
void input_score(int s[], int n); //将小组中n名同学的成绩输入数组s
int get_max_score(int s[], int n); //返回数组s中n名同学的最高成绩值
int get_min_score(int s[], int n); //返回数组s中n名同学的最低成绩值
double get_avg_score(int s[], int n); //返回数组s中n名同学的平均成绩值
int count(int x, int s[], int n); //返回在数组s中n名同学中有多少人得x分(实参给出最高/低时,可以求最高/低成绩的人数)
void output_index(int x, int s[], int n); //在函数中输出数组s中n名同学中得x分的学号(下标)
int main(void)
{
int score[50]; //将score设为局部变量,通过数组名作函数参数,传递数组首地址,在函数中操作数组
int num; //小组人数也设为局部变量,将作为函数的实际参数
int max_score,min_score;
cout<<"小组共有多少名同学?";
cin>>num;
cout<<endl<<"请输入学生成绩:"<<endl;
input_score(score, num); //要求成绩在0-100之间
max_score=get_max_score(score, num);
cout<<endl<<"最高成绩为:"<<max_score<<",共有 "<<count(max_score, score, num )<<" 人。";
min_score=get_min_score(score, num);
cout<<endl<<"最低成绩为:"<<min_score<<",共有 "<<count(min_score,score, num )<<" 人。";
cout<<endl<<"平均成绩为:"<<get_avg_score(score, num);
cout<<endl<<"获最高成绩的学生(学号)有:";
output_index(max_score,score, num);
cout<<endl<<"获最低成绩的学生(学号)有:";
output_index(min_score,score, num);
cout<<endl;
return 0;
}
void input_score(int s[], int n)
{
for(int i=0; i<n; i++)
{
do
{
cout<<"请输入第"<<i<<"位同学的成绩:";
cin>>s[i];
}
while(s[i]<0||s[i]>100);
}
}
int get_max_score(int s[], int n)
{
int high=s[0];
for(int i=0; i<n-1; i++)
{
if(s[i+1]>high)
high=s[i+1];
}
return high;
}
int get_min_score(int s[], int n)
{
int low=s[0];
for(int i=0; i<n-1; i++)
{
if(s[i+1]<low)
low=s[i+1];
}
return low;
}
double get_avg_score(int s[], int n)
{
double avg=0,sum=0;
for(int i=0; i<n; i++)
sum+=s[i];
avg=sum/n;
return avg;
}
int count(int x, int s[], int n)
{
for(int i=0; i<n; i++)
{
if(s[i]==x)
n++;
}
return n;
}
void output_index(int x, int s[], int n)
{
for(int i=0; i<n; i++)
{
if(x==s[i])
cout<<i<<" ";
}
}
运行结果:
学习感悟:重要的是定义名,千万要统一。。。。。。