码迷,mamicode.com
首页 > 其他好文 > 详细

发现一个好用的string转float float转string的东西

时间:2018-10-23 00:11:37      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:main   span   int   3.1   string   names   pre   color   div   

#include<iostream>
#include<string>
#include<sstream>
using namespace std;
int main()
{
    stringstream ss;
    /*string s = "123.1";
    ss << s;
    float a;
    ss >> a;
    cout << a + 1;*/


    float b = 10.1;
    ss << b;
    string p;
    ss >> p;
    cout << p;

}

 

发现一个好用的string转float float转string的东西

标签:main   span   int   3.1   string   names   pre   color   div   

原文地址:https://www.cnblogs.com/x-huihui/p/9833733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!