代码拉取完成,页面将自动刷新
同步操作将从 charlieshu/Algorithms 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#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;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。