学生成绩管理系统源代码.doc

学生成绩管理系统源代码.doc

ID:53583816

大小:73.50 KB

页数:15页

时间:2020-04-04

学生成绩管理系统源代码.doc_第1页
学生成绩管理系统源代码.doc_第2页
学生成绩管理系统源代码.doc_第3页
学生成绩管理系统源代码.doc_第4页
学生成绩管理系统源代码.doc_第5页
资源描述:

《学生成绩管理系统源代码.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、#include#include#include#includestructstudent//结构体定义{intnum;charname[10];charbirthday[10];intCyuyan;intshujujiegou;structstudent*next;};structstudent*creat_by_input();structstudent*get_last_student(structstudent*head);structstudent*Print_menu

2、_main()//主菜单{printf("*********************************************************************");printf("

3、1.........输入学生信息

4、");printf("

5、2.........输出学生信息

6、");printf("

7、3.........查找学生信息

8、");printf("

9、4.........修改学生信息

10、");printf("

11、5.........插入学生信息

12、");printf("

13、6.........删除学生信息

14、");p

15、rintf("

16、7.........排序学生信息

17、");printf("

18、0.........退出系统

19、");printf("

20、_____________

21、");}structstudent*print_table_head(){printf("+----------+----------+----------+----------+-------------+");printf("

22、学号

23、姓名

24、出生日期

25、c成绩

26、数据结构成绩

27、");printf("+----------+----------+----------+----------+

28、-------------+");}structstudent*print_table_row(structstudent*p){printf("

29、%10d

30、%10s

31、%10s

32、%10d

33、%10d

34、",p->num,p->name,p->birthday,p->Cyuyan,p->shujujiegou);}voidprint_table_bottom(){printf("+----------+----------+----------+----------+-------------+");}structstudent*Creat_stu_r

35、ecord()//建立链表{structstudent*plaststu=NULL,*pnewstu;charcontinue_input='N';structstudent*head=NULL;while(1){if(head==NULL){head=creat_by_input();print_table_head();print_table_row(head);print_table_bottom();}else{pnewstu=creat_by_input();print_table_head();print_table_row(pnewstu);p

36、rint_table_bottom();plaststu=get_last_student(head);plaststu->next=pnewstu;}printf("是否继续输入学生信息?(Y继续,N返回菜单)");getchar();continue_input=getchar();if(continue_input=='n'

37、

38、continue_input=='N'){system("cls");Print_menu_main();break;}}returnhead;}structstudent*creat_by_input(){structst

39、udent*pnewstu=(structstudent*)malloc(sizeof(structstudent));printf("请输入学生信息");printf("学号:");scanf("%d",&pnewstu->num);printf("姓名:");scanf("%s",pnewstu->name);printf("出生年月:");scanf("%s",pnewstu->birthday);printf("请输入学生成绩");printf("C语言:");scanf("%d",&(pnewstu->Cyuyan));printf("数据

40、结构:");scanf("%d",&(pnewstu

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。