c++中int型转string以及string转int型

做字节的笔试的时候,突然有一步要用到,结果没想起来,炸了。

直接上代码吧

#include
#include
#include
using namespace std;
int main()
{
	string str="1234";
	int num=4321;
	cout<<"str转换前:"<>str;
	cout<<"str转换后:"<

输出结果:

c++中int型转string以及string转int型_第1张图片

你可能感兴趣的:(c++相关)