您的位置:首页 > 其它

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

2016-09-08 11:21 375 查看
问题及代码:/*  

*Copyright (c) 2016, 烟台大学计算机与控制工程学院  

*All rights reserved. 

*文件名称:s1 

*作    者:申鹏鹏  

*完成日期:2016年9月8日  

*问题描述:程序的多文件组织   

*输入描述:无  

*程序输出:(1)学生的学号、姓名、个人平均分 

           (2)各课程平均分 

*/ 

#include <stdio.h>
#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);
double couravg(struct stud2 s2[],int m,int i);
void allavg(struct stud1 s1[],int n,struct stud2 s2[],int m);

#include "s1.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;
}

#include "s1.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<m; j++)
if (s2[j].no==i)    //学号为i时统计
{
n++;
sum+=s2[j].deg;
}
return(sum/n);
}
double couravg(struct stud2 s2[],int m,int i)   //求编号为i的课程的平均分
{
int j,n=0;              //n为编号为i的课程选修人数
double sum=0;           //编号为i的课程总分
for (j=0; j<m; j++)
{
if (s2[j].cno==i)   //课程编号为i时统计
{
n++;
sum+=s2[j].deg;
}
}
return(sum/n);
}
void allavg(struct stud1 s1[],int n,struct stud2 s2[],int m)    //求学生平均分和课程平均分
{
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));
}
运行结果:
<img src="http://img.blog.csdn.net/20160908224416367?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="" />
<p style="margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; color: rgb(85, 85, 85); font-family: "microsoft yahei"; font-size: 15px; line-height: 35px;">总结:</p><p style="margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; color: rgb(85, 85, 85); font-family: "microsoft yahei"; font-size: 15px; line-height: 35px;">调用函数,一个工程内的多文件组织</p><p style="margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; color: rgb(85, 85, 85); font-family: "microsoft yahei"; font-size: 15px; line-height: 35px;">心得:</p><p style="margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; color: rgb(85, 85, 85); font-family: "microsoft yahei"; font-size: 15px; line-height: 35px;">这次的实验比之前做的顺利的多,希望不断提高。</p>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: