c++中的stod()与stoi()两大函数的应用

#include
using namespace std;

int main()
{
    //1:stoi函数会截取整数部分转化为int型
    //2:stoi在截取过程中遇到不是数字字符,直接停止截数
    //3:stoi如果数字字符串前面为空格会直接跳过空格进行截数
    //4: stoi如果数字字符串前面有除空格外的其他字符会报错
    string s="  1122 33.1111";
    printf("stoi截取:%d\n",stoi(s));
    
    s="  112233.1111";
    printf("stoi截取:%d\n",stoi(s));
    
    
    cout<

运行结果:

stoi截取:1122
stoi截取:112233

stod截取:1234.567800
stod截取:123.000000

你可能感兴趣的:(c++)