摘要: /*atof函数:把字符串s转换为相应的双精度浮点数*/#include <ctype.h>double atof(char s[]){ double val,power; int i,sign; for(i =0;isspace(s[i]);i++) /*isspace判断是否为空白符*/ ; s 阅读全文
posted @ 2019-11-17 11:33 烟火流沙 阅读(211) 评论(0) 推荐(0) 编辑