欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

字符串与整型相互转换

程序员文章站 2024-01-07 17:31:58
...
#include <iostream>
#include <sstream>

using namespace std;

int main(void)
{
    stringstream ss;
    int i=0;
    for(i=0;i<=100;i++)
    {
        ss<<i;
    }
    string s=ss.str();

    cout<<s<<endl;

    system("pause");
}
相关标签: Tools

上一篇:

下一篇: