1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
const char* chars1[] = {"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* replace[] = {"26", "25", "24", "23", "22", "21", "20", "19", "18", "17", "16", "15", "14", "13", "12", "11", "10", "9", "8", "7", "6", "5", "4", "3", "2", "1"};
std::string encode( std::string encrypt )
{
std::string newstring;
for(s = 0; s < encrypt.size(); s++)
{
if( encrypt[s] == "a"/*a value in the array, put letter a for testing*/)
{
newstring = encrypt[s] = "z";
break();
}
}
return newstring;
}
|