利用C++怎么編寫一個(gè)密碼管理系統(tǒng)?針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
烏蘇網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站設(shè)計(jì)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)自2013年創(chuàng)立以來到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。功能介紹:
1.怎么創(chuàng)建密碼,輸入兩次
2.怎么修改密碼
3.怎么刪除密碼
目錄
1.主界面
2. 功能代碼
是不是有點(diǎn)意思,那還不ctrl-c ctrl-v 弄入你的IDE環(huán)境下,試下
// mima.cpp: 主項(xiàng)目文件。 #include "stdafx.h" /// #include#include #include #include //#include using namespace std; void display(); //主界面函數(shù) void xuanze(); //選擇函數(shù) int read_file(); //讀取密碼文件 void write_file();//寫入密碼文件 void Create_mima(); //創(chuàng)建密碼 void YanZheng_mima(); //驗(yàn)證密碼 void Chang_mima(); //修改密碼 void delete_mima(); //刪除密碼 // void jiami_suanfa(char* str); //加密解密算法 char mimaStr[100]; //全局變量 //以上是函數(shù)的聲明部分 //下面是函數(shù)的實(shí)現(xiàn)部分 void display() //主界面函數(shù) { system("cls"); read_file(); cout<<"\t\t************************************************"< >mimaStr; return 1; } void write_file()//寫入密碼文件 { ofstream outfile("MiMa_record.txt"); if (!outfile) { cout<<"can not open the file!"< 5)break; else if(ch==13)ch=getch(); else { cout<<"*"; mimaStr[i++]=ch; ch=getch(); } } mimaStr[i]='\0'; //結(jié)束標(biāo)志 i=0; cout< 5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; //結(jié)束標(biāo)志 if (strcmp(mimaStr,str)==0) { jiami_suanfa(mimaStr); write_file(); cout< 5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]=0; cout< 5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; cout< 5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; mimaStr[i++]=ch; ch=getch(); } } mimaStr[i]='\0'; //結(jié)束標(biāo)志 i=0; cout< 5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; //結(jié)束標(biāo)志 if (strcmp(mimaStr,str)==0) { jiami_suanfa(mimaStr); write_file(); cout< 5)break; else if(ch=='\r')ch=getch(); else { cout<<"*"; str[i++]=ch; ch=getch(); } } str[i]='\0'; cout< 關(guān)于利用C++怎么編寫一個(gè)密碼管理系統(tǒng)問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。
網(wǎng)頁名稱:利用C++怎么編寫一個(gè)密碼管理系統(tǒng)-創(chuàng)新互聯(lián)
本文地址:http://weahome.cn/article/dedheg.html