当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ atof()用法及代码示例


C++ atof() 函数

atof() 函数是 cstdlib 头文件的库函数。它用于将给定的字符串值转换为双精度值。它接受一个包含浮点数的字符串并返回它的双精度值。

atof() 函数的语法:

C++11:

    double atof (const char* str);

参数:

  • str– 表示包含浮点数的字符串。

返回值:

这个函数的返回类型是double,它返回双转换后的值。

例:

    Input:
    str = "123.456";

    Function call:
    atof(str);

    Output:
    123.456

C++代码演示atof()函数的例子

// C++ code to demonstrate the example of
// atof() function

#include <iostream>
#include <cstdlib>
#include <string.h>
using namespace std;

// main() section
int main()
{
    char str[50];

    strcpy(str, "123.456");
    cout << "atof(\"" << str << "\"):" << atof(str) << endl;

    strcpy(str, "-123.456");
    cout << "atof(\"" << str << "\"):" << atof(str) << endl;

    strcpy(str, "0.123456");
    cout << "atof(\"" << str << "\"):" << atof(str) << endl;

    strcpy(str, "-0.123456");
    cout << "atof(\"" << str << "\"):" << atof(str) << endl;

    strcpy(str, "12345678.123456");
    cout << "atof(\"" << str << "\"):" << atof(str) << endl;

    strcpy(str, "-12345678.123456");
    cout << "atof(\"" << str << "\"):" << atof(str) << endl;

    return 0;
}

输出

atof("123.456"):123.456
atof("-123.456"):-123.456
atof("0.123456"):0.123456
atof("-0.123456"):-0.123456
atof("12345678.123456"):1.23457e+07
atof("-12345678.123456"):-1.23457e+07 

参考:C++ atof() 函数



相关用法


注:本文由纯净天空筛选整理自 atof() Function with Example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。