资源描述:
《学生成绩管理系统源码 基于c语言的学生成绩管理系统源码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、学生成绩管理系统源码基于C语言的学生成绩管理系统源码学生成绩管理系统本系统是在C语言下实现的学生成绩管理,是一个简单的课程设计,但是功能齐全,增减删除,指针排序等等,是基础学习的一个好实践材料.全部代码2000多行.共26页.主要实现功能如下:一、学生菜单1、查看个人成绩2、按学号排序查看班级成绩153、按学生总成绩排序查看成绩4、查看不及格学生的成绩5、给管理员留言6、更改登录密码二、管理员菜单1、按班级查询学生信息2、按姓名查询学生信息3、按学号查询学生信息4、插入学生信息删除学生信息5、更改学生信息6、添加班级信息
2、157、查看学生留言8、更改登录密码#include<stdio.h>#include<malloc.h>#include<stdlib.h>#include<conio.h>#include<string.h>staticintnewcount=0;charobj[4][10]={"英语","数理","语言","微分"};struct15student{longnum;charcl
3、asses[20];charname[20];charsex[2];longbirthday;floatscore[4];floattotal;structstudent*next;};structstudent*create(intn)/*15手动插入班级文件*/{structstudent*head=NULL,*p1,*p2;inti,j;for(i=1;i<=n;i++){floattotal=0;p1=(structstudent*)malloc(sizeof(structstudent));printf(
4、"请输入第%d个学生的:",i);printf("学号:");scanf("%ld",&p1->num);printf("班级:");scanf("%s",p1->classes);printf("姓名:");scanf("%s",p1->name);printf("性别:");scanf("%s",p1->
5、sex);printf("生日:");scanf("%ld",&p1->birthday);for(j=0;j<4;j++)15{}printf("%s分数:",obj[j]);scanf("%f",&p1->score[j]);total=total+(p1->score[j]);}p1->total=total;p1->next=NULL;if(i==1)head=p1;elsep2-&
6、gt;next=p1;p2=p1;}return(head);voidclrscr()//空行{intt;for(t=0;t<=40;t++)printf("");}voidprint(structstudent*head)//显示文件
15{structstudent*p=head;printf("学号t班级t姓名t性别t生日t英语语言数理微分总分");while(p!=NULL&&p->total!=0){printf(&quo
7、t;%-10ld%5st%-7st%s%-8ld%.1f%.1f%.1f%.1f%.1f",p->num,p->classes,p->name,p->sex,p->birthday,p->score[0],p->score[1],p->score[2],p->score[3],p->total);p=p->next;}}15structstudent*save(structstudent*head,char*inputclasses)
8、{FILE*fp;structstudent*p;p=head;fp=fopen(inputclasses,"ab");while(p!=NULL){fwrite(p,sizeof(structstudent),1,fp);p=p->next;}15fclose(fp);}structstu