[求助]C++有IntToStr()函数么?
1,我想把int类型转化成字符串,不知道c++有没有提供直接能使用的函数?
2,我自己到网上搜了一下,有的介绍IntToStr(),但没具体说,具体在哪个头文件里也不知道(也不知道是不是c++里的)。
1,我想把int类型转化成字符串,不知道c++有没有提供直接能使用的函数?
2,我自己到网上搜了一下,有的介绍IntToStr(),但没具体说,具体在哪个头文件里也不知道(也不知道是不是c++里的)。
you can use sprintf() function;
give you an example:
#include <iostream>
using namespace std;
int main()
{
int n = 123;
char c[3];
sprintf(c,"%d",n);
for(int i = 0;i < 3;i++)
cout<<c[i];
cout<<endl;
system("pause");
return 0;
}