#include <cstdlib> double atof( const char *str );
atof() 函数将 str 转换为 double 类型,然后返回该值。str 必须以一个有效的数字开头,但可以以任何非数字字符结尾,除了“E”或“e”。例如,
x = atof( "42.0is_the_answer" );
会导致 x 被设置为 42.0。