在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)換為字符串。