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() 函數
相關用法
- C++ atol()用法及代碼示例
- C++ atoll()用法及代碼示例
- C++ atoi()用法及代碼示例
- C++ atexit()用法及代碼示例
- C++ complex atanh()用法及代碼示例
- C++ atan()用法及代碼示例
- C++ at_quick_exit()用法及代碼示例
- C++ complex atan()用法及代碼示例
- C++ atanh()用法及代碼示例
- C++ atan2()用法及代碼示例
- C++ any_of()用法及代碼示例
- C++ acos()用法及代碼示例
- C++ abort()用法及代碼示例
- C++ complex acosh()用法及代碼示例
- C++ array at()用法及代碼示例
- C++ array::fill()、array::swap()用法及代碼示例
- C++ array::operator[]用法及代碼示例
- C++ array::size()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ complex abs()用法及代碼示例
注:本文由純淨天空篩選整理自 atof() Function with Example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。