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

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;
    }
    

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

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

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

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/342280

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月2日 上午1:31
下一篇 2023年3月2日 上午1:31

相关推荐