list.h
/*
文件名称:传值.text
作 者:胡德杰
完成日期:2017年9月7号
版 本 号:v1.1
*/
#define MaxStud 50 //学生人数最多为50
#define MaxCour 300 //学生成绩记录数最多为50*6
struct stud1
{
int no; //学号
char name[10]; //姓名
int bno; //班号
};
struct stud2
{
int no; //学号
int cno; //课程编号
int deg; //分数
};
double studavg(struct stud2 s2[],int m,int i); //求学号为i的学生的平均分
double couravg(struct stud2 s2[],int m,int i); //求编号为i的课程的平均分
void allavg(struct stud1 s1[],int n,struct stud2 s2[],int m); //求学生平均分和课程平均分
list.cpp
#include
#include "list.h"
double studavg(struct stud2 s2[],int m,int i) //求学号为i的学生的平均分
{
int j,n=0; //n为学号为i的学生选学课程数
double sum=0; //学号为i的学生总分
for (j=0; j
main.cpp
#include
#include "list.h"
int main()
{
int n=7; //学生记录人数
int m=21; //学生成绩记录数
struct stud1 s1[MaxStud]=
{
{1,"张斌",9901},
{8,"刘丽",9902},
{34,"李英",9901},
{20,"陈华",9902},
{12,"王奇",9901},
{26,"董强",9902},
{5,"王萍",9901}
};
struct stud2 s2[MaxCour]= //规定课程的编号从1到6,同一学生成绩记录连续存放
{
{1,1,67},
{1,2,98},
{1,4,65},
{8,1,98},
{8,3,90},
{8,6,67},
{34,2,56},
{34,4,65},
{34,6,77},
{20,1,68},
{20,2,92},
{20,3,64},
{12,4,76},
{12,5,75},
{12,6,78},
{26,1,67},
{26,5,78},
{26,6,62},
{5,1,94},
{5,2,92},
{5,6,89}
};
allavg(s1,n,s2,m);
return 0;
}
主要学习如何用工程将复杂的文件的声明定义以及测试程序分开。
学习心得:
这是一个很高效的编写程序的方法,能让复杂的程序简单化,易读而且不会乱。虽然学习的过程遇到了很多的困难,但在同学的帮助下还是愉快的解决了。