C++控制臺實現(xiàn)密碼管理系統(tǒng)
本文實例為大家分享了C++控制臺實現(xiàn)密碼管理系統(tǒng)的具體代碼,供大家參考,具體內(nèi)容如下
功能介紹:
1.怎么創(chuàng)建密碼,輸入兩次
2.怎么修改密碼
3.怎么刪除密碼
目錄
1.主界面

2. 功能代碼



是不是有點意思,那還不ctrl-c ctrl-v 弄入你的IDE環(huán)境下,試下
// mima.cpp: 主項目文件。
#include "stdafx.h"
///
#include <iostream>
#include <conio.h>
#include <string.h>
#include <fstream>
//#include <windows.h>
using namespace std;
void display(); //主界面函數(shù)
void xuanze(); //選擇函數(shù)
int read_file(); //讀取密碼文件
void write_file();//寫入密碼文件
void Create_mima(); //創(chuàng)建密碼
void YanZheng_mima(); //驗證密碼
void Chang_mima(); //修改密碼
void delete_mima(); //刪除密碼
//
void jiami_suanfa(char* str); //加密解密算法
char mimaStr[100]; //全局變量
//以上是函數(shù)的聲明部分
//下面是函數(shù)的實現(xiàn)部分
void display() //主界面函數(shù)
{
system("cls");
read_file();
cout<<"\t\t************************************************"<<endl;
cout<<"\t\t\t\t歡迎使console密碼系統(tǒng)"<<endl;
cout<<"\t\t************************************************"<<endl;
if(strlen(mimaStr)==0)cout<<"\t\t\t\t [1] 創(chuàng)建密碼"<<endl;
else cout<<"\t\t\t\t 創(chuàng)建密碼"<<endl; //密碼已經(jīng)存在就不能創(chuàng)建了
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] 退出系統(tǒng)"<<endl;
cout<<"\t\t************************************************"<<endl;
xuanze();
}
void xuanze()
{
cout<<"\t\t請輸入你要進(jìn)行的操作數(shù): ";
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() //創(chuàng)建密碼
{
system("cls");
char ch;
int i=0;
char str[100]; //確認(rèn)密碼存放處
cout<<"請輸入新建密碼,按Enter結(jié)束(大于等于6位數(shù)): ";
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'; //結(jié)束標(biāo)志
i=0;
cout<<endl<<"請輸入確認(rèn)密碼,按Enter結(jié)束(大于等于6位數(shù)): "; //第二次輸入密碼
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'; //結(jié)束標(biāo)志
if (strcmp(mimaStr,str)==0)
{
jiami_suanfa(mimaStr);
write_file();
cout<<endl<<"創(chuàng)建密碼成功!,任意鍵返回..."<<endl;
ch=getch();
display();
}
else
{
cout<<"兩次輸入密碼不一樣,創(chuàng)建失敗! 繼續(xù)創(chuàng)建密碼按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結(jié)束: ";
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繼續(xù)驗證,任意鍵返回..."<<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結(jié)束: ";
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結(jié)束(大于等于6位數(shù)): ";
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'; //結(jié)束標(biāo)志
i=0;
cout<<endl<<"請輸入確認(rèn)密碼,按Enter結(jié)束(大于等于6位數(shù)): "; //第二次輸入密碼
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'; //結(jié)束標(biāo)志
if (strcmp(mimaStr,str)==0)
{
jiami_suanfa(mimaStr);
write_file();
cout<<endl<<"修改密碼成功!,任意鍵返回..."<<endl;
ch=getch();
display();
}
else
{
cout<<endl<<"兩次輸入密碼不一樣,修改失敗! 繼續(xù)修改密碼按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結(jié)束: ";
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函數(shù)
void main()
{
display();
}
是不是和給出的效果一致呢, 以上的密碼只是簡單的異或操作加密,你可以在這基礎(chǔ)上加入你的專業(yè)級的加密算法試試哈, 什么 des aes都可以哈!
關(guān)于管理系統(tǒng)的更多內(nèi)容請點擊《管理系統(tǒng)專題》進(jìn)行學(xué)習(xí)
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
C++的靜態(tài)聯(lián)編和動態(tài)聯(lián)編
本文闡述了靜態(tài)聯(lián)編和動態(tài)聯(lián)編的概念和區(qū)別,通過具體實例分析了實現(xiàn)動態(tài)聯(lián)編的條件,指出了虛函數(shù)是實現(xiàn)動態(tài)聯(lián)編的基礎(chǔ)。2016-03-03
C/C++編譯報錯printf was not declared in 
這篇文章主要介紹了C/C++編譯報錯printf was not declared in this scope問題及解決方案,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-08-08

