資源簡介
自己用純C語言寫的選課管理系統(tǒng)。包括學生登陸、學生選課、刪除選課、按院系/名稱查找選課、個人信息修改,教師登陸、新增課程、選課查詢、個人信息管理等功能。
代碼片段和文件信息
#include?“courses.h“
/**********************************************/
/**???????????????控制函數(shù)???????????????????**/
/**********************************************/
//?創(chuàng)建課程鏈表
courselinklist?courselinklist_create()
{
courselinklist?cll;
cll?=?(courselinklist)malloc(sizeof(course));
if(cll==NULL)
ses_error(3);
strcpy(cll->id?““);
cll->next=NULL;
return?cll;
}
//?從一個舊節(jié)點拷貝一個新節(jié)點
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個文件信息
- 上一篇:魔王語言c++
- 下一篇:C++語言編寫的輸入法精簡模型
評論
共有 條評論