我在创建一个使用用户输入的轮换数加密单词的函数时遇到了一些问题。这是我到目前为止所拥有的:
string encryptWord(string word, int num)
{
string newWord;
newWord = word;
for(int i = 0; i < word.length(); i++)
{
newWord[i] = tolower(word[i]);
if((word[i] >= 'a') && (word[i] <= 'z'))
{
newWord[i] = word[i] + (num % 26);
if(newWord[i] > 'z')
newWord[i] = newWord[i] - 26;
}
}
return newWord;
}
现在在我的主要测试中
cout << encryptWord("xyz", 6);
我得到的输出是:de
同样,对于解密我有
string decryptRotWord(string word, int num)
{
string newWord;
num = num % 26;
int index;
for(int i = 0; i < word[i]; i++)
{
newWord[i] = tolower(word[i]);
if(word[i] >= 'a' && word[i] <= 'z')
{
index = word[i] - num;
if(index < 'a')
index = index + 26;
newWord[i] = index;
}
}
return newWord;
}
但是,对于这个,当我测试时它不会输出任何东西
cout << decryptRotWord("vdds", 2);