溫馨提示×

C++ stoll如何轉換大數(shù)字符串

c++
小樊
85
2024-07-08 17:18:14
欄目: 編程語言

在C++中,可以使用std::stoll函數(shù)將大數(shù)字符串轉換為長長整型(long long int)。示例如下:

#include <iostream>
#include <string>

int main() {
    std::string bigNumStr = "12345678901234567890";
    long long int bigNum = std::stoll(bigNumStr);
    
    std::cout << "The converted big number is: " << bigNum << std::endl;
    
    return 0;
}

在上面的示例中,首先將大數(shù)字符串"12345678901234567890"賦值給bigNumStr變量,然后使用std::stoll函數(shù)將該字符串轉換為長長整型,最后輸出轉換后的大數(shù)。

0