我正在尝试解决这个问题,但我收到这样的错误 [从 'char' 到 'const char' 的转换无效],但我不知道如何解决它。以下是问题所在的行:
Declarations:
string alp("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
string formatted;
char partoftext[20];
size_t found;
found = text.copy(partoftext,2,0);
partoftext[found] = '\0';
a = atoi(partoftext);
formatted.append(alp[a]);
...
问题出在这行代码中:
formatted.append(alp[a]);
谢谢。