C++ 数字转字符串

时间:2014-05-07 02:17:33   收藏:0   阅读:268
1
2
3
4
5
6
7
8
#include <sstream>
 
string num2str( int i)
{
        stringstream ss;
        ss<<i;
        return ss.strs();
}

 

C++ 数字转字符串,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!