#include <iostream>
#include <conio>
const int ABCSize = 26;
const char low_ch[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
const char high_ch[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
std::string cipher(const std::string &input_s, const int shift)
{
bool Ok;
std::string output_s("");
for(unsigned i = 0; i < input_s.length(); i++)
{
Ok = false;
for(int j = 0; j < ABCSize; j++)
{
if (input_s[i] == low_ch[j])
{
j += shift;
while (j >= ABCSize) j -= ABCSize;
while (j < 0) j += ABCSize;
output_s += low_ch[j];
Ok = true;
break;
}
else if (input_s[i] == high_ch[j])
{
j += shift;
while (j >= ABCSize) j -= ABCSize;
while (j < 0) j += ABCSize;
output_s += high_ch[j];
Ok = true;
break;
}
}
if (!Ok) output_s += input_s[i];
}
return output_s;
}
int main()
{
std::string s;
std::cout << "If you want to cipher string, press \"1\", if you want to decode,"
" press \"2\"";
bool Ok = false;
int shift = 0;
while(!Ok)
{
switch(getch())
{
case '1':
{
std::cout << "\nInput shift: ";
std::cin >> shift;
std::cout << "Input string to cipher: ";
while (std::cin >> s)
{
std::cout << cipher(s, shift) << ' ';
if (std::cin.get() == '\n') break;
}
Ok = true;
} break;
case '2':
{
bool Done = false;
std::cout << "\nInput string to decode: ";
getline(std::cin, s);
for (int i = 0; i < ABCSize & !Done; i++)
{
std::cout << "\nWith shift equal " << i << " we have such string:\n";
std::cout << cipher(s, i);
std::cout << "\nIf decoding is done, press \"1\"";
if (getch() == '1') Done = true;
}
Ok = true;
} break;
default: std::cout << "Press either \"1\" or \"2\"!";
}
}
getch();
}
朱moyimi
- 粉丝: 79
- 资源: 1万+
最新资源
- 木工台锯 木板切割机sw18可编辑全套技术资料100%好用.zip
- HTML/CSS/JavaScript实现圣诞树与飘雪花效果
- Q-GDW10929.5-2018信息系统应用安全第5部分代码安全检测
- RA8876 + STM32F103 LVDS VGA 驱动的线路图
- 基于扩散模型逆向生成的图像超分辨率方法研究与应用
- 脉冲布袋除尘器sw18可编辑全套技术资料100%好用.zip
- 字符分割函数,方便分割字符串
- 数据湖构建(Data Lake Formation,DLF)-大数据管理和分析解决方案
- 基于SSM 的家庭财务记账系统的设计与实现
- 旅游网站用户行为数据集.zip
- 内裤松紧带绷缝机 sw18可编辑全套技术资料100%好用.zip
- 视频游戏检测3-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rar
- python入门-表达式语句.pdf
- python基于tensorflow的人脸识别系统设计与实现源码+说明.zip
- 电子钟程序(已补充完成).zip
- (3298038)数学建模 matlab 课件
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈