资源描述:
《c语言下的学生管理系统(含密码加密和验证码)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、#include#include#include#include#include#defineN20voidinput();//增加学生信息voiddel();//删除学生信息voidchange();//修改学生信息voidfind();//查询学生信息voidsorting();//排序voidsave();//保存到文件voidread();//读取文件voidstu_search();//学生查询信息voidmodify();//学生修改自己密码structs
2、core_stu//定义分数结构体{intscore1;intscore2;intscore3;intsum;}score;structstudent//定义学生结构体{intno;charname[20];charspwd[20];intclassnum;structscore_stuscore;intage;intranking;}stu[N],*p;voidinputPasswd(charpasswd[])//隐藏密码{chars[20];chartemp[2];intn;//strcpy(s,"");s[0]=' ';while(1){while(
3、1){n=getch();if(n==13)//13为回车'r'{break;}printf("*");memset(temp,0,sizeof(temp));//将temp里面的数据用0替换sprintf(temp,"%c",n);//将n打印成一个字符保存到temp里面strcat(s,temp);//把temp所指字符串添加到s结尾处(覆盖s结尾处的' ')}break;}printf("");strcpy(passwd,s);}voidcaptcha(charstr[],intn)//验证码{chara[]="1234567890abcdef
4、ghijkmnopqrstuvwxyzABCDEFGHIJLMNPQRSTUVWXYZ";inti,j,k;k=strlen(a);//k表示字符串的长度srand(time(0));//随机数初始化for(i=0;i