c++如何把带空格的数字转化成字符串
时间: 2023-08-11 14:33:47 浏览: 147
将带空格的数字转化成字符串需要使用stringstream类。具体的实现方法如下:
```c++
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main()
{
int num = 123 456;
stringstream ss;
ss << num;
string str;
ss >> str;
cout << str << endl;
return 0;
}
```
上述代码将一个带空格的整数123 456转换成字符串输出。通过stringstream将整数转换成字符串后,再通过流运算符将字符串输出。
阅读全文