字符串转double,double转字符串各种操作

#include 
#include 
#include 
#include 
#include 
using namespace std;

int main()
{
    /*
    stringstream ss;
    string a = "10.919";
    ss << a;
    double b ;
    ss >> b;
    cout << b <
//    string s = to_string(d);
//    cout << s <> str;
     cout << str <

 

你可能感兴趣的:(字符串转double,double转字符串各种操作)