标签:字符 空格 执行 浮点数 函数返回 eee use span 字符串
atof()函数
atof():double atof(const char *str );
功 能: 把字符串转换成浮点数
str:要转换的字符串。
返回值:每个函数返回 double 值,此值由将输入字符作为数字解析而生成。 如果该输入无法转换为该类型的值,则返回值为 0.0。
函数说明 :atof()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,而再遇到非数字或字符串结束时(‘\0‘)才结束转换,并将结果返回,str字符串可包含正负号、小数点或E(e)来表示指数部分。
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main(){ 4 char *a = "-100.23", 5 *b = "200e-2", 6 *c = "341", 7 *d = "100.34cyuyan", 8 *e = "cyuyan"; 9 printf("a = %.2f\n", atof(a)); 10 printf("b = %.2f\n", atof(b)); 11 printf("c = %.2f\n", atof(c)); 12 printf("d = %.2f\n", atof(d)); 13 printf("e = %.2f\n", atof(e)); 14 system("pause"); 15 return 0; 16
执行结果:
a = -100.23
b = 2.00
c = 341.00
d = 100.34
e = 0.00
标签:字符 空格 执行 浮点数 函数返回 eee use span 字符串
原文地址:http://www.cnblogs.com/feifanrensheng/p/7894488.html