欢迎来到天天文库
浏览记录
ID:38700206
大小:54.00 KB
页数:7页
时间:2019-06-17
《c语言编程-学生成绩管理系统》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、#include/*引用库函数*/#include#include#includetypedefstruct/*定义结构体数组*/{charnum[10];/*学号*/charname[20];/*姓名*/intscore;/*成绩*/}Student;Studentstu[80];/*结构体数组变量*/intmenu_select()/*菜单函数*/{charc;do{system("cls");/*运行前清屏*/printf("tt****Students'GradeMa
2、nagementSystem****");/*菜单选择*/printf("tt
3、1.InputRecords
4、");printf("tt
5、2.DisplayAllRecords
6、");printf("tt
7、3.Sort
8、");printf("tt
9、4.InsertaRecord
10、");printf("tt
11、5.DeleteaRecord
12、");printf("tt
13、6.Query
14、");printf("tt
15、7.Statistic
16、");printf("tt
17、8.AddRecordsfrom
18、aTextFile
19、");printf("tt
20、9.WritetoaTextfile
21、");printf("tt
22、0.Quit
23、");printf("tt*****************************************");printf("tttGiveyourChoice(0-9):");c=getchar();/*读入选择*/}while(c<'0'
24、
25、c>'9');return(c-'0');/*返回选择*/}intInput(Studentstud[],intn)/*输入若干条记录*/{inti
26、=0;charsign,x[10];/*x[10]为清除多余的数据所用*/while(sign!='n'&&sign!='N')/*判断*/{printf("tttstudent'snum:");/*交互输入*/scanf("ttt%s",stud[n+i].num);printf("tttstudent'sname:");scanf("ttt%s",stud[n+i].name);printf("tttstudent'sscore:");scanf("ttt%d",&stud[n+i].score);gets(x);
27、/*清除多余的输入*/printf("tttanymorerecords?(Y/N)");scanf("ttt%c",&sign);/*输入判断*/i++;}return(n+i);}voidDisplay(Studentstud[],intn)/*显示所有记录*/{inti;printf("ttt-----------------------------------");/*格式头*/printf("tttnumbernamescore");printf("ttt--------------------------
28、---------");for(i=1;i1&&i%10==0)/*每十个暂停*/{printf("ttt-----------------------------------");/*格式*/printf("ttt");system("pause");printf("ttt------------------------------
29、-----");}}printf("ttt");system("pause");}voidSort_by_num(Studentstud[],intn)/*按学号排序*/{inti,j,*p,*q,s;chart[10];for(i=0;i0){strcpy(t,stud[j+1].num);strcpy(stud[j+1].num,stud[j].num);strcpy(stud[j].num,
30、t);strcpy(t,stud[j+1].name);strcpy(stud[
此文档下载收益归作者所有