如何在C / C ++中将字符串转换为双精度?
这是将字符串转换为double的示例。
示例
#include <iostream>using namespace std;
int main() {
char s[20] = "18.2894 is a number";
char *p;
double result;
result = strtod(s, &p);
cout<<"The number after conversion of string : "<<result;
return(0);
}
输出结果
The number after conversion of string : 18.289400
在上述程序中,声明了一个用字母数字字符初始化的char类型数组s [20]。该函数strtod()
用于将该字符串转换为双数。
char s[20] = "18.2894 is a number";char *p;
double result;
result = strtod(s, &p);
以上是 如何在C / C ++中将字符串转换为双精度? 的全部内容, 来源链接: utcz.com/z/316699.html