字符串转浮点数

直接上代码:

#include<stdio.h>
double my_atof(char *str)
{
	char *p = NULL;
	double result1 = 0, result2 = 0, result = 0;
	int flag = 0;
	double temp = 10;
	p = str;
	if(NULL == str)
		return -1;
		
	if('-' == *p) {
		flag = 1;
		p++;
	}
	
	while(p != NULL && (*p<= '9' && *p >= '0'))
	{
	
		result1 = result1 * 10 + (*p -48);
		p++;
	}
	if('.' == *p)
	{
		p++;
		while(p != NULL && (*p<= '9' && *p >= '0'))
		{
			result2 = result2 + (double)(*p -48)/temp;;
			temp = temp * 10;
			p++;
		}
	}
		result = result1 + result2;
		
	if(1 == flag)result = -result;
	
	return result;
}

void main()
{
	char szString[] = "-012345678999.0123456789";
	double db2 = 1123456789123456789.0;
	int i = 1;
	double db3, db4 = 0.123456;
	db3 = db2 + db4;
	printf(" db3 = %f\n",db3);
	//printf("%c \n", szString[3]);
	db2 = my_atof(szString);
		printf("/nsscanf result:\n");
    printf("%f  %.12f  %.2f  %e  %E\n", db2, db2, db2, db2, db2);
}

注意如果 浮点数 '.' 号前面的数字很大,两个数相加会出现问题,暂时没有找到解决 方法

另外是直接调用标准接口,见:

http://blog.csdn.net/loomman/article/details/3373298


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值