C++字符串转换为double
时间: 2023-11-14 13:22:25 浏览: 75
C++有关数据类型转换大全
可以使用C++中的atof()函数将字符串转换为double类型。例如:
```c++
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
char str[] = "3.14";
double num = atof(str);
cout << "The converted number is: " << num << endl;
return 0;
}
```
输出结果为:
```
The converted number is: 3.14
```
阅读全文