0

程序运行时,长时间崩溃 thisLong = atoll(c); 这有什么原因吗?

string ConvertToBaseTen(long long base4) {
    stringstream s;
    s << base4;
    string tempBase4;
    s >> tempBase4;
    s.clear();
    string tempBase10;
    long long total = 0;
    for (signed int x = 0; x < tempBase4.length(); x++) {
         const char* c = (const char*)tempBase4[x];
         long long thisLong = atoll(c);
         total += (pow(thisLong, x));
    }
    s << total;
    s >> tempBase10;
    return tempBase10;
}
4

1 回答 1

3

atoll需要const char*作为输入,但tempBase4[x]只返回char.

如果要将字符串中的每个字符转换为十进制,请尝试:

for (signed int x = 0; x < tempBase4.length(); x++) {
   int value = tempBase4[i] -'0';
   total += (pow(value , x));
}

或者,如果您想将整个 tempBase 转换为long long

long long thisLong = atoll(tempBase4.c_str());
total += (pow(thisLong, x));
于 2013-02-14T05:52:47.670 回答