码迷,mamicode.com
首页 > 编程语言 > 详细

【C语言】编写函数实现库函数atoi,把字符串转换成整形

时间:2015-07-04 11:18:03      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

//编写函数实现库函数atoi,把字符串转换成整形
#include <stdio.h>
#include <string.h>
int my_atoi(const char *src)
{
	int flag=1;
	int sum=0;
	while (*src)
	{
		if (*src == ' ')
			src++;
		else if (*src == '+')
		{
			src++;
			flag = 1;
		}
		else if(*src == '-')
		{
			src++;
			flag = -1;
		}
		else if(*src >= '0'&&*src <= '9')
		{
			sum = sum * 10 + (*src - '0');
			src++;
		}
		else
		{
			return 0;
		}
	}
	sum = sum*flag;
	return sum;
}
int main()
{
	printf("%d\n", my_atoi(" +12345"));
	printf("%d\n", my_atoi(" -12345"));
	printf("%d\n", my_atoi("+12345"));
	printf("%d\n", my_atoi("-12345"));
	printf("%d\n", my_atoi("123  45"));
	printf("%d\n", my_atoi("234  5"));
	printf("%d\n", my_atoi(""));
	printf("%d\n", my_atoi("123ab"));
	return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

【C语言】编写函数实现库函数atoi,把字符串转换成整形

标签:

原文地址:http://blog.csdn.net/doudouwa1234/article/details/46753479

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!