首页 > 编程语言 > 详细

c++ 数字与字符串的相互转换

时间:2020-04-16 17:13:29      阅读:56      评论:0      收藏:0      [点我收藏+]

c++ 数字/字符串转换

1. 数字to字符串

  1. 方法一(利用<sstream>的stringstream,可以是浮点数
#include <iostream>
#include <sstream>
using namespace std;

int main()
{
    double x;
    string str;
    stringstream ss;
    cin >> x;
    ss << x;
    ss >> str;
    cout << str;
    return 0;
}

2.方法二(利用<sstream>中的to_string()方法,浮点数会附带小数点后六位,不足补零,不推荐浮点数使用

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

int main()
{
    double x;
    string str;
    cin >> x;
    str = to_string(x);
    cout << str;
    return 0;
}

2. 字符串to数字

  1. 方法一(利用<sstream>的stringstream,可以是浮点数

    #include <iostream>
    #include <sstream>
    using namespace std;
    
    int main()
    {
        double x;
        string str;
        stringstream ss;
        cin >> str;
        ss << str;
        ss >> x;
        cout << x;
        return 0;
    }
    
  2. 方法二(利用<string>中的stoi()函数,其中还有对于其他类型的函数,如stod(),stof()等,根据类型选取

    #include <iostream>
    #include <string>
    using namespace std;
    
    int main()
    {
        int x;
        string str;
        cin >> str;
        x = stoi(str);
        cout << x;
        return 0;
    }
    

c++ 数字与字符串的相互转换

原文:https://www.cnblogs.com/iceix/p/12713895.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!