double atof(const char *nptr) 将nptr 指向的字符串转换为 double 型表示 返回转换后的值。结果值不能用 double 型表示时的处理未定义 atoi 函数实现: int atoi(const char *nptr){ int flag = 1; int result = 0; if(nptr == NULL) return 0; while(*nptr == ' ' || *nptr == '\t') npt...