admin 管理员组

文章数量: 887021


2024年1月25日发(作者:jquery音乐播放器)

829363738394041#include #include double my_atof(char *str){ double n = 0.0; double tmp = 10.0; int flag = 0; assert(str); if(*str == '-') { flag = 1; str++; } while(*str >= '0' && *str <= '9') { n = n*10 + (*str - '0'); str++; } if(*str = '.')

{

str++;

while(*str >= '0' && *str <= '9')

{

n = n + (*str -'0')/tmp;;

tmp = tmp * 10;

str++;

}

} if(flag == 1) { n = -n; } return n;}int main (){ char a[] = "12.345678"; char b[] = "-12.345678"; printf("%fn%fn",my_atof(a),my_atof(b)); return 0;}直接上图:


本文标签: 音乐 播放器 作者