c++ int转换成string范例代码
当前位置:以往代写 > C/C++ 教程 >c++ int转换成string范例代码
2019-06-13

c++ int转换成string范例代码

c++ int转换成string范例代码

//第一种要领

#include <iostream>
#include <string>
using namespace std;

int main()
{
    int n = 65535;
    char t[256];
    string s;

    sprintf(t, "%d", n);
    s = t;
    cout << s << endl;

    return 0;
}

//第二种要领

#include <iostream>
#include <string>
#include <strstream>
using namespace std;

int main()
{
    int n = 65535;
    strstream ss;
    string s;
    ss << n;
    ss >> s;
    cout << s << endl;

    return 0;
}

    关键字:

在线提交作业