欢迎来到天天文库
浏览记录
ID:49353086
大小:337.30 KB
页数:44页
时间:2020-02-29
《C语言学生管理系统(源代码).doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include#include#include#include#defineM50constcharstrStudentFilePath[]="studentInfo.txt";constcharstrCourseFilePath[]="courseInfo.txt";typedefstructMyInt{intnum;structMyInt*next;}CourseNumList,ScoreList;structstudent{intnum
2、;charname[20];charsex;CourseNumList*courseNumList;//存放的是课程的序号ScoreList*courseScore;//与上一个列表相对应的课程的成绩intcourseSize;intave;}stu[M];typedefstructstudentStudent;intstuNum;//系统中存在的学生的记录数typedefstructCourse{intnumCourse;charname[20];charteacherName[20];structCourse*ne
3、xt;}CourseList;CourseList*pCourse=NULL;//头指针CourseList*currentPoint=NULL;//工作指针/*********************************************************************************************************@函数名:Initialize@作用:初始化系统的显示标头@参数:@返回值:***************************************
4、******************************************************************/voidInitialize(){printf("tt********************************");printf("tt学生成绩管理系统--C语言版");printf("");printf("ttCopyRightMaode,YAN");printf("");printf("tt***********************
5、*********");}/*********************************************************************************************************@函数名:Exit@作用:当系统需要退出时,调用此函数停屏,与使用者交互@参数:@返回值:**********************************************************************************************
6、***********/voidExit(){printf("inputanykeytoquit!");getch();exit(0);}voidSave();/*********************************************************************************************************@函数名:InputStudentInfo@作用:输入学生信息,并保存在内存中@参数:@返回值:@创建日期:2012-05-13ByMaode,Yan*
7、********************************************************************************************************/voidInputStudentInfo(){inti;charisSave;printf("开始输入学生信息,建立学生信息表:");printf("请输入学生人数:");scanf("%d",&stuNum);if(stuNum>M){printf("输入的学生数超过人数上线!系统退出!");Exit(
8、);}for(i=0;i
此文档下载收益归作者所有