使用 C++,我正在尝试编写一个加密字符串的程序。我必须将字母表中的每个字母映射到一个数值:例如,a = 0、b = 1、c = 2 等等。到目前为止,我已经创建了一个将字符串作为参数并使用 switch 语句输出值的 void 函数。问题是,这些值是字符,而不是整数,我不能使用数学运算符来改变它们。我的源代码如下:
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <string>
#include <cctype>
using namespace std;
void mapped_string(string in)
{ string mapped_string;
int length = in.length();
for (int i = 0; i < length; i++)
{
switch (in[i])
{
case 'a':
cout<<"0";
break;
case 'b':
cout<<"1";
break;
case 'c':
cout<<"2";
break;
case 'd':
cout<<"3";
break;
case 'e':
cout<<"4";
break;
case 'f':
cout<<"5";
break;
case 'g':
cout<<"6";
break;
case 'h':
cout<<"7";
break;
case 'i':
cout<<"8";
break;
case 'j':
cout<<"9";
break;
case 'k':
cout<<"10";
break;
case 'l':
cout<<"11";
break;
case 'm':
cout<<"12";
break;
case 'n':
cout<<"13";
break;
case 'o':
cout<<"14";
break;
case 'p':
cout<<"15";
break;
case 'q':
cout<<"16";
break;
case 'r':
cout<<"17";
break;
case 's':
cout<<"18";
break;
case 't':
cout<<"19";
break;
default:
cout<< in[i];
}
}
}
int main()
{ string str1 = "Hello";
mapped_string(str1);
cout << "Press any key to exit." << endl;
cin.ignore(2);
return 0;
}
我需要这个函数将字符串中的每个字符映射到一个 int 值,并将 int 值存储在一个名为 mapped_string 的新字符串中。