第2周 项目2 程序的多文件组织

/* 
*Copyright (c)2015,烟台大学计算机与控制工程学院 
*All rights reserved. 
*文件名称:项目2.cbp 
*作    者:毕梦楠 
*完成日期:2015年9月14日 
*版 本 号:v1.0 
* 
*问题描述:学习数据结构,目标就是要编制出有相当规模的程序的。将所有 
           的代码放在一个文件中的做法,不能适用现阶段的需求了。通过 
           这个项目,确认有能力用多文件组织程序。方便以后各章,我们 
           就某一数据结构定义算法库,并能引用算法库进行实践。 
*输入描述:无 
*程序输出:学生信息 
*/  

项目2.h的代码

#include <stdio.h>
#define MaxStud 50      <span style="color:#009900;">//学生人数最多为50
</span>#define MaxCour 300     <span style="color:#009900;">//学生成绩记录数最多为50*6

</span>double studavg(struct stud2 s2[],int m,int i);       <span style="color:#009900;">//求学号为i的学生的平均分   
</span>double couravg(struct stud2 s2[],int m,int i);      <span style="color:#009900;">//求编号为i的课程的平均分  </span> 
void allavg(struct stud1 s1[],int n,struct stud2 s2[],int m);    <span style="color:#009900;"> //求学生平均分和课程平均分   

</span>struct stud1
{
    int no;         <span style="color:#009900;">//学号
</span>    char name[10];  <span style="color:#009900;">//姓名
</span>    int bno;        <span style="color:#009900;">//班号
</span>};
struct stud2
{
    int no;         <span style="color:#009900;">//学号
</span>    int cno;        <span style="color:#009900;">//课程编号
</span>    int deg;        <span style="color:#009900;">//分数
</span>};

项目2.h中包含了数据类型、结构体和自定义函数的声明

 

main.cpp中的代码

#include"项目2.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]=   <span style="color:#009900;">//规定课程的编号从1到6,同一学生成绩记录连续存放
</span>    {
        {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;
}


main.cpp中头文件只需添加一个#include“项目2.h”就可以了,这个文件是主函数。

zdyhanshu.cpp中的代码

#include"项目2.h"
double studavg(struct stud2 s2[],int m,int i)  <span style="color:#009900;"> //求学号为i的学生的平均分
</span>{
    int j,n=0;              <span style="color:#009900;">//n为学号为i的学生选学课程数
</span>    double sum=0;           <span style="color:#009900;">//学号为i的学生总分
</span>    for (j=0; j<m; j++)
        if (s2[j].no==i)    <span style="color:#009900;">//学号为i时统计
</span>        {
            n++;
            sum+=s2[j].deg;
        }
    return(sum/n);
}
double couravg(struct stud2 s2[],int m,int i)   <span style="color:#009900;">//求编号为i的课程的平均分
</span>{
    int j,n=0;            <span style="color:#009900;">  //n为编号为i的课程选修人数
</span>    double sum=0;           <span style="color:#009900;">//编号为i的课程总分
</span>    for (j=0; j<m; j++)
    {
        if (s2[j].cno==i)  <span style="BACKGROUND-COLOR: #ffffff"> </span><span style="color:#009900;BACKGROUND-COLOR: #ffffff">//课程编号为i时统计
</span>        {
            n++;
            sum+=s2[j].deg;
        }
    }
    return(sum/n);
}
void allavg(struct stud1 s1[],int n,struct stud2 s2[],int m)    <span style="color:#009900;">//求学生平均分和课程平均分
</span>{
    int i,j;
    printf("学生平均分:\n");
    printf("  学号     姓名 平均分\n");
    i=0;
    while (i<n)
    {
        j=s1[i].no;
        printf("%4d %10s %g\n",s1[i].no,s1[i].name,studavg(s2,m,j));
        i++;
    }
    printf("课程平均分:\n");
    for (i=1; i<=6; i++)
        printf(" 课程%d:%g\n",i,couravg(s2,m,i));
}

zdyhanshu.cpp中是主函数中调用的各个功能函数,注意也需添加include“项目2.h”头文件。

运行结果:

第2周 项目2 程序的多文件组织_第1张图片


 

知识点总结:

  这个项目让我们用多文件实现一个程序,怎么分割函数,那些东西应该放在哪个文件里。

学习心得:

  通过这个项目,我学会了用多个文件实现一个程序。做到了简化程序。这样也更满足需求。方便程序的修改和维护。

 



 

你可能感兴趣的:(第2周 项目2 程序的多文件组织)