资源简介

自己用纯C语言写的选课管理系统。包括学生登陆、学生选课、删除选课、按院系/名称查找选课、个人信息修改,教师登陆、新增课程、选课查询、个人信息管理等功能。

资源截图

代码片段和文件信息


#include “courses.h“

/**********************************************/
/**               控制函数                   **/
/**********************************************/

// 创建课程链表
courselinklist courselinklist_create()
{
courselinklist cll;
cll = (courselinklist)malloc(sizeof(course));
if(cll==NULL)
ses_error(3);
strcpy(cll->id ““);
cll->next=NULL;
return cll;
}

// 从一个旧节点拷贝一个新节点
courselinklist courselinklist_copy(courselinklist c)
{
int i;
courselinklist newc;

newc = (courselinklist)malloc(sizeof(course));
if(newc==NULL){
ses_error(3);
return NULL;
}
strcpy(newc->id c->id);
strcpy(newc->name c->name);
strcpy(newc->credit c->credit);
strcpy(newc->period c->period);
strcpy(newc->character c->character);
strcpy(newc->teacher_id c

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    2555904  2015-09-24 01:55  Student Elective System\ipch\student elective system-a48838ef\student elective system-c5f8569.ipch

     文件      23852  2015-09-24 01:42  Student Elective System\Student Elective System\courses.c

     文件        599  2015-09-23 23:57  Student Elective System\Student Elective System\courses.data

     文件       5151  2015-09-24 01:43  Student Elective System\Student Elective System\courses.h

     文件        486  2015-09-23 03:35  Student Elective System\Student Elective System\data副本\courses - 副本.data

     文件         76  2015-09-23 22:56  Student Elective System\Student Elective System\data副本\elective - 副本.data

     文件        199  2015-09-21 18:59  Student Elective System\Student Elective System\data副本\students - 副本.data

     文件        177  2015-09-21 20:26  Student Elective System\Student Elective System\data副本\teachers - 副本.data

     文件       5315  2015-09-24 01:55  Student Elective System\Student Elective System\Debug\Student Elective System.Build.CppClean.log

     文件        586  2015-09-24 01:55  Student Elective System\Student Elective System\Debug\Student Elective System.log

     文件      11426  2015-09-24 01:40  Student Elective System\Student Elective System\elective.c

     文件         57  2015-09-24 01:01  Student Elective System\Student Elective System\elective.data

     文件       3662  2015-09-24 01:53  Student Elective System\Student Elective System\elective.h

     文件       1302  2015-09-23 05:45  Student Elective System\Student Elective System\func_general.c

     文件        485  2015-09-23 05:45  Student Elective System\Student Elective System\func_general.h

     文件       8887  2015-09-24 01:44  Student Elective System\Student Elective System\Main.c

     文件        395  2015-09-23 21:49  Student Elective System\Student Elective System\Main.h

     文件        370  2015-09-23 03:50  Student Elective System\Student Elective System\ses_error.c

     文件         83  2015-09-23 05:34  Student Elective System\Student Elective System\ses_error.h

     文件       4480  2015-09-23 04:26  Student Elective System\Student Elective System\Student Elective System.vcxproj

     文件       2141  2015-09-23 04:26  Student Elective System\Student Elective System\Student Elective System.vcxproj.filters

     文件        143  2015-09-21 09:34  Student Elective System\Student Elective System\Student Elective System.vcxproj.user

     文件      10682  2015-09-24 01:53  Student Elective System\Student Elective System\student.c

     文件       2942  2015-09-24 01:52  Student Elective System\Student Elective System\student.h

     文件        199  2015-09-24 01:22  Student Elective System\Student Elective System\students.data

     文件       4069  2015-09-24 01:32  Student Elective System\Student Elective System\teacher.c

     文件       1768  2015-09-24 01:34  Student Elective System\Student Elective System\teacher.h

     文件        186  2015-09-23 21:59  Student Elective System\Student Elective System\teachers.data

     文件    2314240  2015-09-24 01:56  Student Elective System\Student Elective System.sdf

     文件        936  2015-09-21 09:34  Student Elective System\Student Elective System.sln

............此处省略32个文件信息

评论

共有 条评论