版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、WORD 格式整理#include<stdio.h>#include<stdlib.h>struct couse * head1;struct student * head2;struct couse/ 课程信息结构体int num1;char name120;int score;int nelepeo;/ 课程已选人数int Melepeo;/ 课程人数上限struct couse * next;struct student/ 学生信息结构体int num2;char name220;int nelenum50;/ 已选课程编号int nelen;/ 已选课程数量st
2、ruct student * next;void keyboardc()/ 录入课程子函数( 从键盘录入 )专业知识分享WORD 格式整理struct couse *p1,*p2;N1=0;p1=p2=(struct couse*)malloc(sizeof(struct couse);printf("n课程编号 t课程名称 t学分 t课程人数上限n");scanf("%d%s%d%d",&p1->num1,p1->name1,&p1->score,&p1->Melepeo);p1->nelepeo=
3、0;head1=NULL;while(p1->num1!=0&&p1->num1!='#')N1=N1+1;if(N1=1)head1=p1;else p2->next=p1;p2=p1;p1=(structcouse * )malloc(sizeof(structcouse);scanf("%d%s%d%d",&p1->num1,p1->name1,&p1->score,&p1 ->Melepeo);p1->nelepeo=0;专业知识分享WORD 格式整理p2->
4、;next=NULL;void inputc()/ 录入课程主函数int i;printf("n录入课程信息 n");printf("n1.从键盘录入 n");printf("n2.返回主菜单 n");printf("n请选择编号 (13):n");scanf("%d",&i);switch(i)case(1):keyboardc();break;case(2):break;void insertc(struct couse *incouse)/ 课程信息增加子函数struct cous
5、e *p0,*p1,*p2;p1=head1;p0=incouse;专业知识分享WORD 格式整理if(head1=NULL)head1=p0;p0->next=NULL;elsewhile(p0->num1>p1->num1)&&(p1->next!=NULL)p2=p1;p1=p1->next;if(p0->num1 <= p1->num1)if(head1=p1) head1=p0;else p2->next=p0;p0->next=p1;elsep1->next=p0;专业知识分享WORD 格式整理
6、p0->next=NULL;N1=N1+1;void delc(int num1)/ 课程信息删除子函数struct couse *p1,*p2;if(head1=NULL)printf("n没有课程 , 无法删除 !n");goto end;p1=head1;while(num1!=p1->num1 && p1->next!=NULL)p2=p1;p1=p1->next;if(num1=p1->num1)if(p1=head1) head1=p1->next;专业知识分享WORD 格式整理else p2->next
7、=p1->next;printf("n 已删除该编号课程 !n"); N1=N1-1;else printf("n 无该编号的课程 !n"); end:;void managementc()/课程信息管理主函数struct couse * incouse;int i,num1;printf("n课程管理 n");printf("n1.新增课程 n");printf("n2.删除课程 n");printf("n3.返回主菜单 n");printf("n请选择编号
8、 (13):n");scanf("%d",&i);switch(i)case(1):incouse=(structcouse专业知识分享WORD 格式整理*)malloc(sizeof(struct couse);printf("n课程编号 t课程名称 t学分 t课程人数上限 n");scanf("%d%s%d%d",&incouse->num1,incouse->name1,&incouse->score,&incouse->Melepeo);incouse->
9、nelepeo=0;insertc(incouse);break;case(2):printf("n请输入要删除课程的编号:n");scanf("%d",&num1);delc(num1);break;case(3):break;void keyboards()/ 录入学生信息子函数(从键盘录入)专业知识分享WORD 格式整理int i;struct student *p1,*p2;N2=0;p1=p2=(struct student *)malloc(sizeof(struct student);printf("n 学生学号 t 学生
10、姓名 n"); scanf("%d%s",&p1->num2,p1->name2); p1->nelen=0;for(i=0;i<20;i+) p1->nelenumi=0;head2=NULL;while(p1->num2!=0)N2=N2+1;if(N2=1)head2=p1;else p2->next=p1;p2=p1;p1=(struct student * )malloc(sizeof(struct student);scanf("%d%s",&p1->num2,p1-&
11、gt;name2); p1->nelen=0;for(i=0;i<20;i+) p1->nelenumi=0;专业知识分享WORD 格式整理p2->next=NULL;void inputs()/ 录入学生信息主函数int i;printf("n录入学生信息 n");printf("n1.从键盘录入 n");printf("n2.返回主菜单 n");printf("n请选择编号 (12):n");scanf("%d",&i);switch(i)case(1):ke
12、yboards();break;case(2):break;void inserts(struct student * incouse)/ 学生信息增加子函数struct student *p0,*p1,*p2;p1=head2;p0=incouse;专业知识分享WORD 格式整理if(head2=NULL)head2=p0;p0->next=NULL;elsewhile(p0->num2>p1->num2)&&(p1->next!=NULL)p2=p1;p1=p1->next;if(p0->num2 <= p1->num2
13、)if(head2=p1) head2=p0;else p2->next=p0;p0->next=p1;elsep1->next=p0;专业知识分享WORD 格式整理p0->next=NULL;N2=N2+1;void dels(int num2)/ 学生信息删除子函数struct student *p1,*p2;if(head2=NULL)printf("n没有该学生信息, 无法删除 !n");goto end;p1=head2;while(num2!=p1->num2 && p1->next!=NULL)p2=p1;p
14、1=p1->next;if(num2=p1->num2)if(p1=head2) head2=p1->next;专业知识分享WORD 格式整理else p2->next=p1->next;printf("n 已删除该学生信息 !n"); N2=N2-1;else printf("n 无该学号的学生 !n"); end:;void managements()/ 学生信息管理主函数struct student * incouse;int i,num2;printf("n学生信息管理 n");printf(&q
15、uot;n1.新增学生信息 n");printf("n2.删除学生信息 n");printf("n3.返回主菜单 n");printf("n请选择编号 (13):n");scanf("%d",&i);switch(i)case(1):incouse=(structstudent专业知识分享WORD 格式整理*)malloc(sizeof(struct student);incouse->nelen=0;incouse->nelenum0=0;printf("n学生学号 t学生
16、姓名 n");scanf("%d%s",&incouse->num2,incouse->name2); inserts(incouse);break;case(2):printf("n请输入要删除学生的学号:n");scanf("%d",&num2);dels(num2);break;case(3):break;void elect(struct student * s)/ 学生选课子函数(进行选课)专业知识分享WORD 格式整理struct couse * p;int num1,i;printf
17、("n请输入要选课的编号:n");scanf("%d",&num1);for(i=0;s->nelenumi!=0;i+);s->nelenumi=num1;(s->nelen)+;p=head1;while(p->num1!=num1) p=p->next;(p->nelepeo)+;void cheak()/ 学生选课子函数( 查询可选课程 )char e;struct couse * c;struct student * s;int num2,i,j=0,t=0;printf("n请输入你的学号
18、:n");scanf("%d",&num2);s=head2;while(s->num2!=num2 && s->next!=NULL) s=s->next;if(s->num2!=num2)专业知识分享WORD 格式整理printf("n不存在你的信息, 请进入主菜单录入你的信息 !n");goto end;c=head1;printf("n你的可选课程编号:n");while(c!=NULL)for(t=0,i=0;s->nelenumi!=0;i+)if(c->
19、;num1=s->nelenumi) t=1;if(t=0 && (c->nelepeo!=c->Melepeo)printf("%d ",c->num1);j+;c=c->next;if(j=0)专业知识分享WORD 格式整理printf("n你已选完所有课程,无法再多选 !n");goto end;printf("n选课 (y/n)?:n");getchar();e=getchar();i=0;while(e='y')elect(s);printf("n继续选
20、课 (y/n)?:n");getchar();e=getchar();end:;void back(struct student * p)/退选课程struct couse * p1;int num1,i,j;printf("n 请输入你要退掉的课程编号 :n"); scanf("%d",&num1);专业知识分享WORD 格式整理p1=head1;while(p1->num1!=num1) p1=p1->next;for(i=0;p->nelenumi!=num1;i+);for(j=i;p->nelenumj
21、!=0;j+)p->nelenumj=p->nelenumj+1;p->nelenum-j=0;(p1->nelepeo)-;printf("n退课成功 !n");void hcheak()/ 学生选课子函数(查询已选课程)char c;struct couse * p0;struct student * p;int num2,i,f=0;printf("n请输入学号 :n");scanf("%d",&num2);p=head2;while(p->num2!=num2 && p!=
22、NULL) p=p->next;if(p=NULL)printf("n不存在你的信息, 请回主菜单录入信专业知识分享WORD 格式整理息 :n");goto end;printf("n已选课程编号 :n");if(p->nelenum0=0)printf("n你还没选课 !n");goto end;for(i=0;p->nelenumi!=0;i+)printf("%dn",p->nelenumi);p0=head1;while(p0->num1!=p->nelenumi) p0
23、=p0->next;f=f+p0->score;printf("n总学分 :%dn",f);printf("n 是否进行退课 (y/n)?n"); getchar();c=getchar();while(c='y')专业知识分享WORD 格式整理back(p);printf("n继续退课 (y/n)?");getchar();c=getchar();(p->nelen)-;end:;void elective()/ 学生选课主函数int i;printf("n学生选课 n");pr
24、intf("n1.查询可选课程 n");printf("n2.查询已选课程 n");printf("n3.返回主菜单 n");printf("n请输入 (13):n");scanf("%d",&i);switch(i)case(1):cheak();break;case(2):hcheak();break;case(3):break;专业知识分享WORD 格式整理void listc()/ 查看课程信息struct couse * p;p=head1;printf("n课程编号
25、课程名称学分课程已选人数课程人数上限 n");while(p!=NULL)printf("%-8d%10s%6d%8d%12dn",p->num1,p->name1,p->s core,p->nelepeo,p->Melepeo);p=p->next;void lists()/ 查看学生信息struct student * p;p=head2;printf("n 学生学号 学生姓名 已选课程数量 n"); while(p!=NULL)专业知识分享WORD 格式整理printf("%-4d %10s
26、%6dn",p->num2,p->name2,p->nelen); p=p->next;void store()/ 系统信息查看主函数int i;printf("n系统信息查看 n");printf("n1.查看课程信息 n");printf("n2.查看学生信息 n");printf("n3.返回主菜单 n");printf("n请输入编号 (13):n");scanf("%d",&i);switch(i)case(1):listc();break;case(2):lists();break;case(3):break;专业知识分享WORD 格式整理int main()/ 主函数system("color f0");int i;start:printf("n*欢 迎 使用学生选课系统*n");printf("n菜单
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 就业合同范本简短
- 抵账房合同范本
- 广告规划合同范本
- 绿化垃圾合同范本
- 2024城市污水处理操作维护协议
- 担保人参与购销协议规范文本2024
- 2024定制水瓶订购协议示例
- 茶艺与茶文化学习通超星期末考试答案章节答案2024年
- 2024年技术咨询协议格式
- 学前儿童音乐教育学习通超星期末考试答案章节答案2024年
- 阿里巴巴福利分析课件
- 广西汽车站案例分析报告
- 抖音认证承诺函
- 上呼吸道感染呼吸查房
- 化学品作业场所安全警示标志双氧水
- 肿瘤细胞的免疫逃逸机制
- 传染病的实验室检查
- 口腔科诊疗技术操作规范2023版
- 2024年中粮集团有限公司招聘笔试参考题库含答案解析
- 驾校科目二应急预案流程
- 人教版2023-2024学年五年级数学上册常考易考突围第三单元:小数除法简便计算“拓展型”专项练习(解析版)
评论
0/150
提交评论