2022年C语言学生成绩管理系统设计报告_第1页
2022年C语言学生成绩管理系统设计报告_第2页
2022年C语言学生成绩管理系统设计报告_第3页
2022年C语言学生成绩管理系统设计报告_第4页
2022年C语言学生成绩管理系统设计报告_第5页
已阅读5页,还剩53页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、运算机科学与技术学院课程设计报告2022 2022 学年其次学期课程名称 C 语言程序设计题 目 同学成果治理系统同学姓名 XXX 学 号 XXX 专业班级 XXX 指导老师 XXX 合 作 者 XXX 2022 年 6月 30日同学成果治理系统本程序可实现对同学语数外三门课程成果的录入与储存;1、设计目的明白治理信息系统开发流程,熟识 C本程序旨在训练读者的基本编程才能,语言的各种语法、编写流程、以及能够娴熟运用各种算法、以及各种函数的使用;2、功能描述本程序可实现的功能:(1)录入同学的成果(2)输出同学的成果(3)添加同学的成果信息(4)删除指定同学的成果信息(5)依据要求对同学成果信息

2、进行排序(6)依据学号查询指定同学的成果(7)将同学的成果信息以文件形式储存3、总体设计3.1 详细实现 main()函数:程序第一调用menu()函数,显示出系统主菜单,然后将 menu()函数返回的从用户读取的选项k 值给予 k,接着进入 switch case语句进入对应选项函数,如输入错误没有该选项就给出提示(default)以上过程为一个死循环,直到用户输入 0 为止;menu()函数:在屏幕上打印选项名称,然后用一个 int 类型的变量接受从用户输入的选项,最终将其 return 至主函数;score *creatlink()函数:创建链表主要实现流程如下:print 函数:先令

3、P=head,使 p 指向第一个节点,当 head=!NULL时说明没有到链表尾端,那么就输出 p 所指向的结构数据,然后让 p 指向下一个节点,直到发觉 p=NULL为止;而当 head=NULL说明链表中不存在数据,直接停止输出;score *add ()函数,添加新的同学信息, 详细实现路程如流程图所示(图片制作时没有加 Y/N 判定,在判定图框中均为向左为真,向右为假):score *search()函数:用来查询同学成果,传递给函数指向链表的头 指针,查询时,假如找到与输入相匹配的学号就打印此同学,反之就输出“ 没 有任何同学资料! ” :score *sortdata 函数:该函数

4、有学号、姓名、单科成果排序(冒泡排序 法),实行过程如图:save()函数:用来储存数据,第一从用户输入取得要储存的文件名,然 后定义一个指向文件的指针,以读写方式打开文件;将写生信息依次存入文件;score *load函数:用于读取数据,通过“r+ ” 方式打开文件并判定是否打开胜利;详细实现如下:score *statistics函数:它能实现程序的统计,通过switch-case语句挑选统计方式,通过循环运算总分或者平均分并打印出来,流程都是通过循环,让指针逐个遍历整个链表,读取相应的数据并实现统计3.2 数据结构设计数据结构:定义了一个包含同学成果信息的结构体(struct score

5、node),同学信息包括学号(number)、姓名( name10 )、语文、数学、英语成果( chinese 、mathmatic 、english )、以及指向下一个结构体的链表指针 struct scorenode *next;3.3 函数功能描述main()函数:主函数功能主要是让程序挑选将要进行的操作,通过 menu()函数返回的选项进入其他函数执行;int menu (int k)函数:此函数显示主菜单内容,需要一个 int 类型变量作为输入要执行的选项并返回给 main()函数;score *creatlink 函数:此函数用于创建链表,为了节约内存空间,我们采纳 malloc

6、()函数为结构体安排动态内存空间;另外考虑到学号不行能是0,所以用输入 0 的方式来判定是否终止输入,将最终的结构体中的指针指向NULL,并返回一个指向链表第一个结构的指针;void print (score *head)函数: 此函数返回值为空, 学问为了在 stdout流(屏幕)上打印出同学的成果信息,需要一个指向链表头的指针来逐个向后 打印;score *addscore *head , score *stu函数:为同学信息中添加新的学生资料,然后重新排序(按学号),并返回头指针;传入函数的head 为链表头指针, stu 指针指的是要添加的位置;score *searchscore *

7、head函数:依据学号查找同学信息,需要链表头指针并返回指向被搜寻同学的指针;搜寻原理就是从头向后面依次检索;score *delescore *head函数:删除指定同学的资料;传入头指针,在函数中创建变量储存要删除同学的学号,然后从头向尾检索,直至找到该同学 并将其删除,返回头指针;score *sortdatascore *head函数:用于按要求(学号、姓名、单科成绩)排序,最终返回头指针,排序运用老师上课时讲过的冒泡排序法;int savescore *p1 函数:将链表内的数据以文件的形式储存,传入的 p1指针一开头指向链表头,随着储存次序一个一个地向后面指,直到 NULL为止;函

8、数内部定义一个指向文件的指针*fp ,用于写入文件;score *loadscore *head函数:读取文件数据,head 为一个新建的链表头指针,读取文件数据之后令其储存至新建的链表之中,并返回头指针;score *statisticsscore *head函数:统计成果,可以统计总分、平均分、最高(低)分,返回操作后的链表首地址(头指针);4、程序实现 4.1 源代码 #include #include #include #include #define LEN sizeofstruct scorenode #define DEBUG /*=数据结构 =*/ struct scoreno

9、de int number; / 同学学号 char name10; / 同学姓名 float chinese; / 语文成果 float mathmatic; / 数学成果 float english; / 英语成果struct scorenode *next; ;typedef struct scorenode score; typedef struct scorenode *scoreptr; int n,k; / 定义结构体变量 / 定义结构体变量指针/*n,k为全局变量,本程序中的函数均可以使用它, 分别用于记数和标记*/*=创建链表 =*/ /* 返回一个指向链表头的指针 */ s

10、core *creatlink score*head; score *p1,*p2,*p3,*max; int i,j; float fen; char t10; n=0; p1=p2=p3=score *mallocLEN;head=p3; / 开创一个 新单元printf 请输入同学资料,输 0 退出 .n; repeat1: printf 请输入同学学号 学号应大于 0 :; / 输入 学号,学号应大于 0 scanf%d,&p1-number;whilep1-numbernumber; / 输入学号为字符 或小于 0 时,程序报错,提示重新输入学号 ifp1-number=0 goto

11、 end; / 当输入的学号为 0 时,转到末尾,终止创建链表 else p3=head; ifn0 fori=0;inumber.=p3-number p3=p3-next; else printf 学号重复 , 请重输 .n; goto repeat1; /* 当输入的 学号已经存在,程序报错,返回前面重新输入 */ printf 请输入同学姓名: ; scanf%s,&p1-name; /* 输入同学姓名 */ printf 请输入语文成果 0100 :; /* 输入语文成果,成果应在 0-100*/ scanf%f,&p1-chinese; whilep1-chinesechinese

12、100 getchar;printf输入错误,请重新输入语文成果*/; /* 输入错误,重新输入语文成果直到正确为止scanf%f,&p1-chinese; printf 请输入数学成果 0100 :; /* 输入数学成果,成果应在 0-100*/ scanf%f,&p1-mathmatic; whilep1-mathmaticmathmatic100 getchar;printf输入错误,请重新输入数学成果*/; /* 输入错误,重新输入数学成果直到正确为止scanf%f,&p1-mathmatic; printf 请输入英语成果 0100 :; /* 输入英语成果,成果应在 0-100*/

13、 scanf%f,&p1-english; whilep1-englishenglish100 getchar;printf输入错误,请重新输入英语成果;scanf%f,&p1-english; /* 输入错误,重新输入英语成果直 到正确为止 */ head=NULL; whilep1-number.=0 n=n+1;ifn=1 head=p1; else p2-next=p1; p2=p1; p1=score *mallocLEN;printf请输入同学资料,输0 退出 .n;repeat2:printf请输入同学学号 学号应大于 0 :;scanf%d,&p1-number; /* 输入学

14、号 */ whilep1-numbernumber; */* 输入学号为字符或小于 0 时,程序报错,提示重新输入学号ifp1-number=0goto end; */* 当输入的学号为 0 时,转到末尾,终止创建链表else p3=head; ifn0 fori=0;inumber.=p3-number p3=p3-next; else printf 学号重复 , 请重输 .n; goto repeat2; /* 当输入的学号已经存在,程序报错,返回前面重新输入 */ printf 请输入同学姓名: ; scanf%s,&p1-name; /* 输入学生姓名 */ printf 请输入语文成

15、果 0100 :;scanf%f,&p1-chinese; 绩,成果应在 0-100*/ /* 输入语文成whilep1-chinesechinese100 getchar;printf输入错误,请重新输入语文成果;scanf%f,&p1-chinese; /* 输入错误,重新 输入语文成果直到正确为止 */ printf 请输入数学成果 0100 :;scanf%f,&p1-mathmatic; 绩,成果应在 0-100*/ /* 输入数学成whilep1-mathmaticmathmatic100 getchar;printf输入错误,请重新输入数学成果;scanf%f,&p1-mathm

16、atic; /* 输入错误,重新输入数学成果直到正确为止 */ printf 请输入英语成果 0100 :; scanf%f,&p1-english; /* 输入英语 成果,成果应在 0-100*/ whilep1-englishenglish100 getchar;printf输入错误,请重新输入英语成果;scanf%f,&p1-english; */* 输入错误,重新输入英语成果直到正确为止 end: p1=head; p3=p1; fori=1;in;i+ forj=i+1;jnext; ifmax-numberp1-number k=max-number; max-number=p1-

17、number;p1-number=k; */* 交换前后结点中的学号值,使得学号大者移到后面的结点中strcpyt,max-name;strcpymax-name,p1-name; strcpyp1-name,t; /* 交换前后 结点中的姓名,使之与学号相匹配 */ fen=max-chinese; max-chinese=p1-chinese;p1-chinese=fen; */* 交换前后结点中的语文成果,使之与学号相匹配fen=max-mathmatic; max-mathmatic=p1-mathmatic;p1-mathmatic=fen; /* 交换前后结点中的数学成果,使之与学

18、号相匹配 */ fen=max-english; max-english=p1-english;p1-english=fen; */* 交换前后结点中的英语成果,使之与学号相匹配 max=head;p1=head; /* 重新使 max,p 指向链表头 */ p2-next=NULL; /* 链表 结尾 */printf 输入的同学数为 :%d 个.n,n; returnhead; /*=显示数据 =*/* 函数 print,功能:显示同学成果*/void printscore *head score *p; ifhead=NULL printfn 没有任何同学资料 .n; else prin

19、tf%dn,n; printf-n;printf|学号 t|姓名 t|语文 t|数学 t|英语 t|n;printf-n; /* 打印表格域 */ p=head; do printf|%dt|%st|%.1ft|%.1ft|%.1ft|n,p-number,p-name,p-chinese,p-mathmatic,p-english; printf-n; /* 打印表格域 */ p=p-next; while p.=NULL; /*=添加同学数据 =*/* 函数 add, 功能:追加同学资料, 并且将全部同学资料按学号排序*/score *addscore *head,score *stu s

20、core *p0,*p1,*p2,*p3,*max; int i,j; float fen; char t10; p3=stu=score *mallocLEN; /* 开创一个新单元 */ printfn输入要增加的同学的资料.; repeat4: printf请输入同学学号 学号应大于 0 :; scanf%d,&stu-number; /* 输入学号,学号应大于 0*/ whilestu-numbernumber; */ /* 输入错误,重新输入学号 ifstu-number=0 goto end2; /* 当输入的学号为0 时,转到末尾,终止追加*/ else p3=head; ifn

21、0 fori=0;inumber.=p3-number p3=p3-next; else printf 学号重复 , 请重输 .n; goto repeat4; /* 当输入的学号已经存在,程序报错,返回前面重新输入 */ printf 输入同学姓名: ; scanf%s,stu-name; /* 输 入同学姓名 */ printf 请输入语文成果 0100 :; scanf%f,&stu-chinese; /* 输入语文成果,成果应在 0-100*/ whilestu-chinesechinese100 getchar; printf输入错误,请重新输入语文成果; scanf%f,&stu-

22、chinese; /* 输入错误,重新输入语文成果直到正确为止*/ /*输 printf请输入数学成果 0100 : ; scanf%f,&stu-mathmatic; 入数学成果,成果应在0-100*/ whilestu-mathmaticmathmatic100 getchar;printf输入错误,请重新输入数学成果; scanf%f,&stu-mathmatic; /* 输入 错误,重新输入数学成果直到正确为止 */ printf 请输入英语成果 0100 :; scanf%f,&stu-english; /* 输入英语成果,成果应在 0-100*/ whilestu-englishe

23、nglish100 getchar;printf输入错误,请重新输入英语成果;scanf%f,&stu-english; */* 输入错误,重新输入英语成果直到正确为止p1=head; p0=stu; ifhead=NULL head=p0; p0-next=NULL; /* 当原先链表为空时,从首结点开 始存放资料 */ else /* 链 表不为空 */ ifp1-next=NULL /* 找 到原先链表的末尾 */ p1-next=p0; p0-next=NULL; /* 将它与新开单元相连接 */ else whilep1-next.=NULL /* 仍没找到末尾,连续找 */ p2=

24、p1;p1=p1-next; p1-next=p0; p0-next=NULL; n=n+1;p1=head; p0=stu; fori=1;in;i+ forj=i+1;jnext; ifmax-numberp1-number k=max-number; max-number=p1-number; p1-number=k; */* 交换前后结点中的学号值,使得学号大者移到后面的结点中 strcpyt,max-name; strcpymax-name,p1-name; strcpyp1-name,t; /* 交换前后结点中的姓名,使之与学号相匹配 */ fen=max-chinese; max

25、-chinese=p1-chinese; p1-chinese=fen; */* 交换前后结点中的语文成果,使之与学号相匹配 fen=max-mathmatic; max-mathmatic=p1-mathmatic; p1-mathmatic=fen; /* 交换前后结点中的数学成果,使之与学号相匹配 */ fen=max-english; max-english=p1-english; p1-english=fen; /* 交换前后结点中的英语成果,使之与学号相匹配 */ max=head;p1=head ; /* 重新使 max,p 指向链表头 */ end2: printf 现在的同学

26、数为 :%d 个.n,n; returnhead; /*=查询数据 =*/ /* 函数 search, 功能:查询同学成果 */ score *searchscore *head int number; score *p1,*p2; printf输入要查询的同学的学号:; scanf%d,&number; whilenumber.=0 ifhead=NULL printfn 没有任何同学资料 .n;returnhead; printf-n; printf|学号 t|姓名 t|语文 t|数学 t|英语 t|n; printf-n; p1=head; whilenumber.=p1-number&

27、p1-next.=NULL p2=p1;p1=p1-next; ifnumber=p1-number printf|%dt|%st|%.1ft|%.1ft|%.1ft|n,p1-number,p1-name, p1-chinese,p1-mathmatic,p1-english; printf-n; else printf%d 不存在此同学 .n,number; printf 输入要查询的同学的学号 ,; scanf%d,&number; printf 已经退出了 .n; returnhead; /*=删除数据 =*/ /* 函数 dele ,功能:删除同学资料 */ score *deles

28、core *head score *p1,*p2; int number; printf输入要删除的同学的学号 输入 0 时退出 :; scanf%d,&number; getchar; whilenumber.=0 /* 时退出 */ ifhead=NULL 输入学号为 0 printfn 没有任何同学资料 .n; returnhead; p1=head; whilenumber.=p1-number&p1-next.=NULL /*p1 指向的不 是所要找的首结点,并且后面仍有结点 */ p2=p1;p1=p1-next; 结点 */*p1 后移一个 ifnumber=p1-number

29、/* 假如找到了*/ ifp1=head head=p1-next; 结点,把地二个结点地址给予 head*/ else p2-next=p1-next; 个结点地址赋给前一结点地址*/* 如 p1 指向的是首/* 否就将下一 printf 删除 :%dn,number;n=n-1; else printf%d不存在此同学 .n,number; /* 找不到该结点*/ printf输入要删除的同学的学号:; scanf%d,&number; getchar; #ifdef DEBUG printf 已经退出了 .n; #endif printf 现在的同学数为 :%d 个.n,n; retur

30、nhead; /*=排序 =*/ /* 定义排序函数;此函数带回一个指向链表头的指针 */ score *sortdatascore *head score *p,*max; int i,j,x; float fen; char t10; ifhead=NULL printfn没有任何同学资料,请先建立链表.n;returnhead; /* 链表为空 */ max=p=head;fori=0;i80;i+ printf*;printf1按同学学号排序 t2 按同学姓名排序 t3按语文成果排序n; printf4 按数学成果排序 t5 按英语成果排序 tn; fori=0;i80;i+ prin

31、tf*; printf 请挑选操作 :; scanf%d,&x; /* 挑选操作 */ getchar; switchx /* 用 switch 语句实现功能挑选 */ case 1 : fori=1;in;i+ forj=i+1;jnext; ifmax-numberp-number k=max-number; max-number=p-number; p-number=k; /* 交换前后结点中的学号值,使得学号大者移到后面的结点中 */ strcpyt,max-name; strcpymax-name,p-name; strcpyp-name,t; /* 交换前后结点中的姓名,使之与学号

32、相匹配 */ fen=max-chinese; max-chinese=p-chinese; p-chinese=fen; /* 交换前后结点中的语文成果,使之与学号相匹配 */ fen=max-mathmatic; max-mathmatic=p-mathmatic; p-mathmatic=fen; /* 交换前后结点中的数学成果,使之与学号相匹配 */ fen=max-english; max-english=p-english; p-english=fen; /* 交换前后结点中的英语成果,使之与学号相匹配 */ max=head; p=head; /* 重新使 max,p 指向链表头

33、 */ printhead; break; /* 打印值排序后的链表内容 */ case 2 : fori=1;in;i+ forj=i+1;jnext; ifstrcmpmax-name,p-name0 /*strcmp :字符串比较函数 */ strcpyt,max-name; /*strcpy:字符串复制函数*/strcpymax-name,p-name; strcpyp-name,t; /* 交换前后结点中的姓名,使得姓名字符串的值大者移到后面的 结点中 */ k=max-number; max-number=p-number; p-number=k; /* 交换前后结点中的学号值,使

34、之与姓名相匹配 */ fen=max-chinese; max-chinese=p-chinese; p-chinese=fen; /* 交换前后结点中的语文成果,使之与姓名相匹配 */ fen=max-mathmatic; max-mathmatic=p-mathmatic; p-mathmatic=fen; /* 交换前后结点中的数学成果,使之与姓名相匹配 */ fen=max-english; max-english=p-english; p-english=fen; /* 交换前后结点中的英语成果,使之与姓名相匹配 */ p=head; max=head; printhead; bre

35、ak; case 3 : fori=1;in;i+ forj=i+1;jnext; ifmax-chinesep-chinese fen=max-chinese; max-chinese=p-chinese; p-chinese=fen; */* 交换前后结点中的语文成果,使得语文成果高者移到后面的结点中k=max-number; max-number=p-number; p-number=k; /* 交换前后结点中的学号,使之与语文成果相匹配 */ strcpyt,max-name;strcpymax-name,p-name; strcpyp-name,t; /* 交换前后结点中的姓名,使之

36、与语文成果相匹配 */ fen=max-mathmatic; max-mathmatic=p-mathmatic; p-mathmatic=fen; /* 交换前后结点中的数学成果,使之与语文成果相匹配 */ fen=max-english; max-english=p-english; p-english=fen; /* 交换前后结点中的英语成果,使之与语文成果相匹 配*/ p=head; max=head; printhead; break; case 4 : fori=1;in;i+ forj=i+1;jnext; ifmax-mathmaticp-mathmatic fen=max-m

37、athmatic; max-mathmatic=p-mathmatic; p-mathmatic=fen; */* 交换前后结点中的数学成果,使得数学成果高者移到后面的结点中k=max-number; max-number=p-number; p-number=k; /* 交换前后结点中的学号,使之与数学成果相匹配 */ strcpyt,max-name; strcpymax-name,p-name; strcpyp-name,t; /* 交换前后结点中的姓名,使之与数学成果相匹配 */ fen=max-chinese; max-chinese=p-chinese; p-chinese=fen

38、; /* 交换前后结点中的语文成果,使之与数学成果相匹配 */ fen=max-english; max-english=p-english; p-english=fen; /* 交换前后结点中的英语成果,使之与数学成果相匹配 */ p=head; max=head; printhead; break; case 5 : fori=1;in;i+ forj=i+1;jnext; ifmax-englishp-english fen=max-english;max-english=p-english; p-english=fen; */* 交换前后结点中的英语成果,使得英语成果高者移到后面的结点

39、中k=max-number; max-number=p-number; p-number=k; /* 交换前后结点中的学号,使之与英语成果相匹配 */ strcpyt,max-name; strcpymax-name,p-name; strcpyp-name,t; /* 交换前后结点中的姓名,使之与英语成果相匹配 */ fen=max-chinese; max-chinese=p-chinese; p-chinese=fen; /* 交换前后结点中的语文成果,使之与英语成果相匹配 */ fen=max-mathmatic; max-mathmatic=p-mathmatic; p-mathma

40、tic=fen; /* 交换前后结点中的数学成果,使之与英语成果相匹配 */ p=head; max=head; printhead; break; default : printf 输入错误 , 请重试 . n; return 0; /*=储存数据 =*/ /* 函数 save, 功能:储存同学的资料 */ void savescore *p1 FILE *fp; char filepn20;/* 用来存放文件储存路径以及文件名 */ printf 请输入文件路径及文件名 :; scanf%s,filepn; iffp=fopenfilepn,w+=NULL printf 不能打开文件 .n

41、; exit1; fprintffp, 同学成果治理系统 n; fprintffp,n; fprintffp,-n; fprintffp,|学号 t|姓名 t|语文 t|数学 t|英语 t|n; fprintffp,-n; /* 打印表格域 */ whilep1.=NULL fprintffp,%dt%st%.1ft%.1ft%.1ftn,p1-number,p1-name,p1-ch inese,p1-mathmatic,p1-english; p1=p1-next; /* 下移一 个结点 */ fclosefp; printf 文件已经储存 .n; return ; /*=调入文件 =*/

42、* 函数 loadfile,功能 : 从文件读入同学记录*/score *loadfilescore *head score *p1,*p2; int m=0; char filename10; FILE *fp; printf 请输入文件路径及文件名 :; scanf%s,filename;/* 输入文件路径及名称 */ iffp=fopenfilename,r+=NULL printf 不能打开文件 .n; return 0; fscanffp, 同学成果治理系统 n; fscanffp,n;fscanffp,-n; fscanffp,|学号 t|姓名 t|语文 t|数学 t|英语 t|n

43、; fscanffp,-n; /* 读入表格域 */ printf 同学成果治理系统 n; printfn; printf-n; printf|学号 t|姓名 t|语文 t|数学 t|英语 t|n; printf-n; /* 打印表格域 */ m=m+1; ifm=1 p1=score *mallocLEN; /* 开创一个新单元 */fscanffp,%d%s%f%f%f,&p1-number,p1-name,&p1-chinese,&p1-mathma tic,&p1-english;printf|%dt|%st|%.1ft|%.1ft|%.1ft|n,p1-number,p1-name,

44、p1- chinese,p1-mathmatic,p1-english; /* 文件读入与显示 */ head=NULL; do n=n+1; ifn=1 head=p1; else p2-next=p1; p2=p1; p1=score *mallocLEN; /* 开创一个新单 元*/fscanffp,%d%s%f%f%fn,&p1-number,p1-name,&p1-chinese,&p1-math matic,&p1-english;printf|%dt|%st|%.1ft|%.1ft|%.1ft|n,p1-number,p1-name,p1- chinese,p1-mathmati

45、c,p1-english; /* 文件读入与显示 */ while.feoffp; p2-next=p1; p1-next=NULL; n=n+1; printf-n; /* 表格下线 */ fclosefp; /* 结 束读入,关闭文件 */ return head; /*=统计 =*/* 函数 statistics,功能:统计同学成果*/score *statisticsscore *head float sum1=0,sum2=0,sum3=0,ave1=0,ave2=0,ave3=0,max=0,min=0; char maxname10,minname10; score *p; in

46、t x,y=0,i=0; p=head;printf1个人总分和平均分 t2单科平均分 t3 总分最高分和最低分n; scanf%d,&x; getchar;switchx /*用 switch语句实现功能挑选 */ case 1: ifhead=NULL printfn 没有任何同学资料 .n; returnhead; else printf-n;printf|学号 t|姓名 t|语文 t|数学 t|英语 t|总分 t|平均分t|n;printf-n;/* 打印表格域 */ whilep.=NULL sum1=p-chinese+p-mathmatic+p-english; /* 运算个人总

47、分 */ ave1=sum1/3; /* 运算个人 平均分 */printf|%dt|%st|%.1ft|%.1ft|%.1ft|%.1ft|%.1ft|n,p-numb er,p-name,p-chinese,p-mathmatic,p-english,sum1,ave1; /* 打印结果 */printf-n; p=p-next; returnhead;break; case 2: ifhead=NULL printfn没有任何同学资料.n;returnhead; whilep.=NULL sum1=sum1+p-chinese; sum2=sum2+p-mathmatic; sum3=s

48、um3+p-english; /* 计 算总分 */ y=y+1; ave1=sum1/y; ave2=sum2/y; ave3=sum3/y; /* 运算平均分 */ p=p-next;/* 使 p 指向下一个结点 */ printf 语文平均分是 %.1fn,ave1; printf 数学平均分是 %.1fn,ave2; printf 英语平均分是 %.1fn,ave3; /*打印结果 */ returnhead; break; case 3: ifhead=NULL printfn没有任何同学资料.n;returnhead; min=max=p-chinese+p-mathmatic+p-english; whileichinese+p-mathmatic+p-english; /* 运算个人总分 */ ifmaxname; i

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论