对于课堂,我必须在 C++ 中开发一个 Caesar 加密项目,该项目接受一个字符串,并将所有 ascii 代码移动一个随机整数。我的项目运行良好,代码如下:
#include <iostream>
#include <string>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main(int argc, const char * argv[]) {
string sentence = "";
int shifter, counter = 0, position = 0;
srand(time(NULL));
shifter = (rand() % 25) + 1;
cout << "Enter a sentence, and this program will encrypt it: " << endl;
getline(cin, sentence);
cout << "\n\n\n";
for (int i = 0; i < sentence.length(); i++) {
sentence[i] = sentence[i] + shifter;
cout << sentence[i];
}
return 0;
}
我唯一的问题是我的老师希望他们只改成字母。如果字母是“z”并且移位是“2”,她希望输出是“b”。我不确定如何做到这一点。
这个问题的简单程序是否可行?如果是这样,它会怎么做?