预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共39页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

#include<stdio.h>#include<stdlib.h>#include<string.h>intN1,N2;structcouse*head1;structstudent*head2;structcouse//课程信息结构体{intnum1;//课程编号charname1[20];//课程名称chartype[20];//课程性质inthour;//总学时intteach;//上课学时intexp;//实验上机学时intcredit;//学分intsemester;//开课学期intnelepeo;//课程已选人数intMelepeo;//课程上限structcouse*next;};structstudent//学生信息结构体{intnum2;//学号charname2[20];//姓名intnelenum[50];//已选课程编号charnelename[10][20];//已选名称intnelen;//已选课程数量intscore;//总学分intgainscore;//已获得的学分structstudent*next;};voidmanger();voidstudent();voidmanagementc();voidmanagements();voidmanage();voidmain();voidintoc()//存储课程信息{FILE*fp;structcouse*p;char[30];printf("\t\t\t*****************************\n");printf("\n\t\t\t\t欢迎使用此系统!\n");printf("\t\t\t*****************************\n");printf("输入路径:");getchar();gets();if((fp=fopen(,"w"))==NULL){printf("无法储存!");exit(0);}p=head1;while(p!=NULL){fprintf(fp,"%d%s%s%d%d%d%d%d%d%d\n",p->num1,p->name1,p->type,p->hour,p->teach,p->exp,p->credit,p->semester,p->nelepeo,p->Melepeo);p=p->next;}fclose(fp);printf("已储存入%s文件!\n",);}voidkeyboardc()//录入课程子函数(从键盘录入){structcouse*p1,*p2;N1=0;p1=p2=(structcouse*)malloc(sizeof(structcouse));printf("\t\t\t*****************************\n");printf("\n\t\t\t\t欢迎使用此系统!\n");printf("\t\t\t*****************************\n");printf("编号\\名称\\性质\\总学时\\上课学时\\实验上机学时\\学分\\开课学期\\已选人数\\课程上限\n");scanf("%d%s%s%d%d%d%d%d%d%d",&p1->num1,p1->name1,&p1->type,&p1->hour,&p1->teach,&p1->exp,&p1->credit,&p1->semester,&p1->nelepeo,&p1->Melepeo);head1=NULL;while(p1->num1!=0){N1=N1+1;if(N1==1)head1=p1;elsep2->next=p1;//对这段语句有疑问p2=p1;p1=(structcouse*)malloc(sizeof(structcouse));scanf("%d%s%s%d%d%d%d%d%d%d",&p1->num1,p1->name1,p1->type,&p1->hour,&p1->teach,&p1->exp,&p1->credit,&p1->semester,&p1->nelepeo,&p1->Melepeo);}p2->next=NULL;}voidfilec()//录入键盘子函数(从文件录入){FILE*fp;char[20];structcouse*p1,*p2;N1=0;printf("\t\t\t*****************************\n");printf("\n\t\t\t\t欢迎使用此系统!\n");printf("\t\t\t*****************************\n");printf("输入要读入的文件路径:");getchar();gets();if((fp=fo