溫馨提示×

c++數(shù)字轉(zhuǎn)字符串如何實現(xiàn)

c++
小億
87
2024-03-20 16:52:45
欄目: 編程語言

在C++中,可以使用標準庫中的std::to_string()函數(shù)來將數(shù)字轉(zhuǎn)換為字符串。示例如下:

#include <iostream>
#include <string>

int main() {
    int num = 12345;
    std::string str = std::to_string(num);
    
    std::cout << "String representation of the number is: " << str << std::endl;
    
    return 0;
}

以上代碼將整數(shù)12345轉(zhuǎn)換為字符串,并輸出結(jié)果。您也可以使用std::to_string()函數(shù)來將其他類型的數(shù)字(如double、float等)轉(zhuǎn)換為字符串。

0