利用C++怎么编写一个密码管理系统?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
乌苏网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、响应式网站设计等网站项目制作,到程序开发,运营维护。创新互联自2013年创立以来到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。功能介绍:
1.怎么创建密码,输入两次
2.怎么修改密码
3.怎么删除密码
目录
1.主界面
2. 功能代码
是不是有点意思,那还不ctrl-c ctrl-v 弄入你的IDE环境下,试下
// mima.cpp: 主项目文件。 #include "stdafx.h" /// #include <iostream> #include <conio.h> #include <string.h> #include <fstream> //#include <windows.h> using namespace std; void display(); //主界面函数 void xuanze(); //选择函数 int read_file(); //读取密码文件 void write_file();//写入密码文件 void Create_mima(); //创建密码 void YanZheng_mima(); //验证密码 void Chang_mima(); //修改密码 void delete_mima(); //删除密码 // void jiami_suanfa(char* str); //加密解密算法 char mimaStr[100]; //全局变量 //以上是函数的声明部分 //下面是函数的实现部分 void display() //主界面函数 { system("cls"); read_file(); cout<<"\t\t************************************************"<<endl; cout<<"\t\t\t\t欢迎使console密码系统"<<endl; cout<<"\t\t************************************************"<<endl; if(strlen(mimaStr)==0)cout<<"\t\t\t\t [1] 创建密码"<<endl; else cout<<"\t\t\t\t 创建密码"<<endl; //密码已经存在就不能创建了 cout<<"\t\t\t\t [2] 验证密码"<<endl; cout<<"\t\t\t\t [3] 修改密码"<<endl; cout<<"\t\t\t\t [4] 删除密码"<<endl; cout<<"\t\t\t\t [5] 退出系统"<<endl; cout<<"\t\t************************************************"<<endl; xuanze(); } void xuanze() { cout<<"\t\t请输入你要进行的操作数: "; char ch; L: ch=getch(); if ((ch=='1' && strlen(mimaStr)==0) || ch=='2' || ch=='3' || ch=='4' || ch=='5') { switch(ch) { case '1':Create_mima(); break; case '2':YanZheng_mima(); break; case '3':Chang_mima(); break; case '4':delete_mima(); break; case '5':exit(0); break; } } else goto L; } int read_file() //读取密码文件 { L: ifstream infile("MiMa_record.txt"); if (!infile) { write_file(); goto L; } else infile>>mimaStr; return 1; } void write_file()//写入密码文件 { ofstream outfile("MiMa_record.txt"); if (!outfile) { cout<<"can not open the file!"<<endl; return; } else outfile<<mimaStr; } void jiami_suanfa(char* str) //加密解密算法 { int len=strlen(str); for (int i=0;i<len;i++) str[i]=str[i]^'g'; } void Create_mima() //创建密码 { system("cls"); char ch; int i=0; char str[100]; //确认密码存放处 cout<<"请输入新建密码,按Enter结束(大于等于6位数): "; ch=getch(); while (i<100) { if (ch==13 && i>5)break; else if(ch==13)ch=getch(); else { cout<<"*"; mimaStr[i++]=ch; ch=getch(); } } mimaStr[i]='\0'; //结束标志 i=0; cout<<endl<<"请输入确认密码,按Enter结束(大于等于6位数): "; //第二次输入密码 ch=getch(); while (i<100) { if (ch=='\r' && i>5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; //结束标志 if (strcmp(mimaStr,str)==0) { jiami_suanfa(mimaStr); write_file(); cout<<endl<<"创建密码成功!,任意键返回..."<<endl; ch=getch(); display(); } else { cout<<"两次输入密码不一样,创建失败! 继续创建密码按Enter,任意键返回..."<<endl; ch=getch(); if (ch=='\r')Create_mima(); else display(); } } void YanZheng_mima() //验证密码 { read_file(); system("cls"); char ch; char str[100]; int i=0; cout<<"请输入你要验证的密码,Enter结束: "; ch=getch(); while (i<100) { if (ch=='\r' && i>5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]=0; cout<<endl; jiami_suanfa(mimaStr); //解密 if (strcmp(str,mimaStr)==0) { cout<<"恭喜!验证成功!任意键返回..."<<endl; ch=getch(); display(); } else { cout<<"验证不成功!按Enter继续验证,任意键返回..."<<endl; ch=getch(); if (ch=='\r')YanZheng_mima(); else display(); } } void Chang_mima() //修改密码 { read_file(); system("cls"); char ch; char str[100]; int i=0; cout<<"请输入原来的密码,Enter结束: "; ch=getch(); while (i<100) { if (ch=='\r' && i>5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; cout<<endl; i=0; jiami_suanfa(mimaStr); //解密 if (strcmp(str,mimaStr)==0) { cout<<endl<<"请输入修改密码,按Enter结束(大于等于6位数): "; ch=getch(); while (i<100) { if (ch=='\r' && i>5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; mimaStr[i++]=ch; ch=getch(); } } mimaStr[i]='\0'; //结束标志 i=0; cout<<endl<<"请输入确认密码,按Enter结束(大于等于6位数): "; //第二次输入密码 ch=getch(); while (i<100) { if (ch=='\r' && i>5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; //结束标志 if (strcmp(mimaStr,str)==0) { jiami_suanfa(mimaStr); write_file(); cout<<endl<<"修改密码成功!,任意键返回..."<<endl; ch=getch(); display(); } else { cout<<endl<<"两次输入密码不一样,修改失败! 继续修改密码按Enter,任意键返回..."<<endl; ch=getch(); if (ch=='\r')Chang_mima(); else display(); } } else { cout<<endl<<"输入密码不匹配!你不能修改该密码!任意键返回..."<<endl; ch=getch(); display(); } } void delete_mima() //删除密码 { read_file(); system("cls"); char ch; char str[100]; int i=0; cout<<"请输入原来的密码,Enter结束: "; ch=getch(); while (i<100) { if (ch=='\r' && i>5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; cout<<endl; i=0; jiami_suanfa(mimaStr); //解密 if (strcmp(str,mimaStr)==0) { cout<<"确定删除请按'y'or'Y',任意键取消返回..."<<endl; ch=getch(); if (ch=='y' || ch=='Y') { mimaStr[0]='\0'; write_file(); cout<<"删除成功,任意键返回..."<<endl; ch=getch(); display(); } else display(); } else { cout<<endl<<"输入密码不匹配!你不能删除该密码!任意键返回..."<<endl; ch=getch(); display(); } } //mian函数 void main() { display(); }
关于利用C++怎么编写一个密码管理系统问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
新闻标题:利用C++怎么编写一个密码管理系统-创新互联
文章位置:/article46/dedheg.html
成都网站建设公司_创新互联,为您提供标签优化、外贸网站建设、小程序开发、网站排名、微信小程序、ChatGPT
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联