2014秋C++第13周项目3参考-成绩处理函数版

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂“贺老师课堂”同步展示,使用的帐号请到课程主页中查看。 

【项目3 - 成绩处理函数版】
项目2的另一种实现。输入、求最大/小值等所有功能都通过自定义函数完成。这种设计貌似比项目2麻烦,但其结构有更多的优点,尤其是当程序的规模更大时。通过这个项目,学会将数组名用作函数的参数。
下面建议的自定义函数的声明和main()函数,你需要定义这些函数,并且加上必要的#include<...>文件。

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名同学的平均成绩值
double get_stdev_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<<"标准偏差为:"<<get_stdev_score(score, num);
  cout<<endl<<"获最高成绩的学生(学号)有:";
  output_index(max_score,score, num);
  cout<<endl<<"获最低成绩的学生(学号)有:";
  output_index(min_score,score, num);
  cout<<endl;
  return 0;
}

提示:这么多的自定义函数,可以考虑多文件组织了。

参考解答:

#include <iostream>
#include<Cmath>
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名同学的平均成绩值
double get_stdev_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<<"标准偏差为:"<<get_stdev_score(score, num);
  cout<<endl<<"获最高成绩的学生(学号)有:";
  output_index(max_score,score, num);
  cout<<endl<<"获最低成绩的学生(学号)有:";
  output_index(min_score,score, num);
  cout<<endl;
  return 0;
}

/*input_score函数的功能是输入小组成员的成绩
 *入口参数:
     s - 存放成绩的数组
	 n - 学生人数
 *返回值:无
 */
void input_score(int s[], int n)
{
    int i;
    for(i=0;i<n;i++)
		do
		{
			cout<<"输入第"<<i<<" 位同学的成绩:";
			cin>>s[i];
		}while(s[i]<0||s[i]>100);
		return;
}

/* get_max_score函数的功能是求出n名同学成绩中的最高成绩
 *入口参数:
     s - 存放成绩的数组
	 n - 学生人数
 *返回值:最高成绩
 */
int get_max_score(int s[], int n)
{
    int max = -1;
    int i;
    for(i=0;i<n;i++)
		if(max<s[i]) max= s[i];
		return max;
}

/* get_min_score函数的功能是求出n名同学成绩中的最低成绩
 *入口参数:
     s - 存放成绩的数组
	 n - 学生人数
 *返回值:最低成绩
 */
int get_min_score(int s[], int n)
{
    int min = 999;
    int i;
    for(i=0;i<n;i++)
		if(min>s[i]) min= s[i];
		return min;
}

/*get_avg_score函数的功能是求出num名同学成绩中的平均成绩
 *入口参数:
     s - 存放成绩的数组
	 n - 学生人数
 *返回值:平均成绩
 */
double get_avg_score(int s[], int n)
{
    double sum = 0;
    int i;
    for(i=0;i<n;i++)
		sum+=s[i];
    return sum/n;
}

/* get_ stdev _score函数的功能是求出num名同学成绩的标准偏差
 *入口参数:
     s - 存放成绩的数组
	 n - 学生人数
 *返回值:标准偏差
 */
double get_stdev_score(int s[], int n)
{
    double sum = 0,mean_score, x;
    int i;
    mean_score =get_avg_score(s,n);  //此处通过调用函数求均值,体会函数的意义
    for(i=0;i<n;i++)
	{
		x=s[i]-mean_score;
		sum+=x*x;
	}
    return sqrt(sum/(n-1));
}

/* count函数的功能是返回值s数组中为m的元素的个数
 *入口参数:
     m - 要查找计数的值
	 s - 存放成绩的数组
	 n - 学生人数
 *返回值:m出现的数目
 */
int count(int m, int s[], int n)
{
    int iCount=0;
    int i;
    for(i=0;i<n;i++)
	{
		if(s[i]==m)
			iCount++;
	}
	return iCount;
}

/*output_index函数的功能是输出s数组中值为m的元素的下标(index)
 *注意:值为m的元素可能有多个
 *入口参数:
     m - 要查找的值
	 s - 存放成绩的数组
	 n - 学生人数
 *返回值:无
 */
void output_index(int m, int s[], int n)
{
    int i;
    for(i=0;i<n;i++)
	{
		if(s[i]==m)
			cout<<i<<" ";
	}
	return;
}
=================== 迂者 贺利坚 CSDN博客专栏=================
|== IT学子成长指导专栏 专栏文章的分类目录(不定期更新) ==|
|== C++ 课堂在线专栏  贺利坚课程教学链接(分课程年级) ==|
|== 我写的书——《逆袭大学——传给IT学子的正能量》    ==|
===== 为IT菜鸟起飞铺跑道,和学生一起享受快乐和激情的大学 =====
时间: 2024-10-24 16:33:08

2014秋C++第13周项目3参考-成绩处理函数版的相关文章

2014秋C++第13周项目2参考-成绩处理

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目2- 成绩处理]在数组score中将要存储某小组C++程序设计的成绩,请设计实现下面的各功能函数,并在main函数中调用,组合成一个完整的应用:(1)输入小组人数及成绩,要保证成绩在0-100之间:(2)输出该小组的最高成绩.最低成绩.平均成绩:(3)输出考得最高成绩和最低成绩的同学的

2014秋C++第8周项目3参考-多分段函数求值

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,实践要求见http://blog.csdn.net/sxhelijian/article/details/39493833. 课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.   [项目3:多分段函数求值] 从键盘输入x的值(要求为实型),根据下面的公式计算并输出y的值.  (1)请用if~else~语句的嵌套,实现这个多分支的程序: 参考解

2014秋C++第13周项目1参考-数组大折腾

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目1 - 数组大折腾](1)创建一个有20个元素的整型数组,通过初始化,为数组中的前10个元素赋初值,然后通过键盘输入后10个元素的值,从前往后(从第0个到第19个)输出数组中元素的值,每5个元素换一行. 参考解答: #include <iostream> using nam

2014秋C++第13周项目6参考-体验文件操作

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目6-体验文件操作]数据下载链接(1-预备)阅读并理解附后的<文件操作初体验>(必要时运行这些程序).(2-热身)从键盘读入若干名学生的英语成绩,编程求出这次考试的平均成绩,并统计输出优秀人数和不及格人数. #include <fstream> //操作文件必写

2014秋C++第13周项目4参考-数组的排序

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目4 - 数组的排序](1)编写函数,完成冒泡排序,要求不能改变下面的main函数. //两个函数bubble_sort和output_array的声明 int main( ) { int a[20]={86,76,62,58,77,85,92,80,96,88,77,67,80,68,

2014秋C++第13周项目5参考-字符串操作

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目5-字符串操作](1)阅读下面的程序,完成类似的字符统计功能 #include<iostream> #include<cstdio> using namespace std; int main() { char str[50]; int i=0,n=0; cou

2014秋C++ 第13周项目 C++中的一维数组

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目1 - 数组大折腾](1)创建一个有20个元素的整型数组,通过初始化,为数组中的前10个元素赋初值,然后通过键盘输入后10个元素的值,从前往后(从第0个到第19个)输出数组中元素的值,每5个元素换一行. int main( ) { int a[20]={...}; //初始化前10个元

2014秋C++第17周 项目6参考 学生成绩统计

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目6-学生成绩统计]每位同学的信息学号.姓名.C++.高数.英语成绩.定义一个学生成绩的结构体数组,其中的数据成员包括学号(char num[13]).姓名(name).三门课的成绩(grade).总分(score).均分(average)).(1)从键盘上输入N名学生的信息(N定义为常

2014秋C++第17周 项目4参考 日期结构体

课程主页在http://blog.csdn.net/sxhelijian/article/details/39152703,课程资源在云学堂"贺老师课堂"同步展示,使用的帐号请到课程主页中查看.  [项目4 - 日期结构体](1)定义一个结构体变量(包括年.月.日),要求输入年.月.日,计算输出该日是该年的第几天. #include <iostream> using namespace std; struct Date { int year; int month; int