在C++中,可以使用std::to_string函數將數字轉換為字符串。例如:
#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;
}
這段代碼將整數123轉換為字符串,并輸出到控制臺上。您可以根據需要將其他數字類型轉換為字符串,例如double或float。