1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
舒氏加密系统.cpp 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <conio.h>
#include <windows.h>
#include <string>
using namespace std;
void encryption(){
system("cls");
string s;
int n;
cout<<"请输入要加密的明文:";
cin>>s;
cout<<"请输入加密编号(即加密钥匙):";
cin>>n;
cout<<"加密后的密文:";
for(int i=0;i<s.length();i++){
char l;
l = s[i]+(n%10);
cout<<l;
}
cout<<endl;
cout<<"加密完成,请手动复制!"<<endl;
cout<<"复制完成后请输入1";
char input='0';
while(input != '1'){
input = getch();
}
system("cls");
return;
}
void deciphering(){
system("cls");
string s;
int n;
cout<<"请输入要解密的密文:";
cin>>s;
cout<<"请输入加密编号(即加密钥匙):";
cin>>n;
cout<<"解密后的明文:";
for(int i=0;i<s.length();i++){
char l;
l = s[i]-(n%10);
cout<<l;
}
cout<<endl;
cout<<"解密完成,请手动复制!"<<endl;
cout<<"复制完成后请输入1";
char input='0';
while(input != '1'){
input = getch();
}
system("cls");
return;
}
int main(){
char input='0';
while(input != '3'){
cout<<"您好,欢迎使用舒氏加密系统,请从下列服务中选取您需要的一项:"<<endl;
cout<<"1)加密"<<endl;
cout<<"2)解密"<<endl;
cout<<"3)退出"<<endl;
cout<<"请输入您的选择(1,2或3)并回车:";
cin>>input;
if(input == '1')
encryption();
else if(input == '2')
deciphering();
else if(input != '3'){
system("cls");
cout<<"对不起,您的选择错误,请重新选择!"<<endl;
}
}
cout<<endl;
cout<<"感谢您的使用,欢迎下次再会!"<<endl;
cout<<" || '|| '|| "<<endl;
cout<<" || || || "<<endl;
cout<<"''||'' ||''|, '''|. `||''|, || //` ('''' "<<endl;
cout<<" || || || .|''|| || || ||<< `'') "<<endl;
cout<<" `|..' .|| || `|..||. .|| ||. .|| \\. `...' "<<endl;
cout<<endl;
system("pause");
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/saigonshu/algorithm.git
git@gitee.com:saigonshu/algorithm.git
saigonshu
algorithm
Algorithms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385