c++數(shù)字轉(zhuǎn)字符串函數(shù)怎么實(shí)現(xiàn)

c++
小億
86
2024-03-30 17:23:55

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

#include <iostream>
#include <string>

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

這段代碼將整數(shù)123轉(zhuǎn)換為字符串,并輸出到控制臺(tái)上。您可以根據(jù)需要將其他數(shù)字類型轉(zhuǎn)換為字符串,例如double或float。

0