当前位置:   article > 正文

《明解C语言(入门篇)》练习11-10_明解c语言练习11-10

明解c语言练习11-10
/*
编写函数,实现与库函数atoi、atol、atof相同的功能
*/

#include <stdio.h>

int strtoi(const char *nptr)
{
	int ans = 0;
	int sign = 1;

	while (*nptr == ' ') nptr++;

	if (*nptr == '+')
	{
		nptr++;
	}
	else if (*nptr == '-')
	{
		sign = -1;
		nptr++;
	}
	
	while (*nptr >= '0' && *nptr <= '9')
	{
		ans *= 10;
		ans += sign * (*nptr++ - '0');
	}

	return ans;
}

long strtol(const char *nptr)
{
	long ans = 0;
	int sign = 1;

	while (*nptr == ' ') nptr++;

	if (*nptr == '+')
	{
		nptr++;
	}
	else if (*nptr == '-')
	{
		sign = -1;
		nptr++;
	}
	
	while (*nptr >= '0' && *nptr <= '9')
	{
		ans *= 10;
		ans += sign * (*nptr++ - '0');
	}

	return ans;
}

double strtof(const char *nptr)
{
	int sig_base = 1, index = 0, sig_index = 1;
	double ans = 0.0, digit = 1.0;

	while (*nptr == ' ') nptr++;

	if (*nptr == '+')
	{
		nptr++;
	}
	else if (*nptr == '-')
	{
		sig_base = -1;
		nptr++;
	}

	while (*nptr >= '0' && *nptr <= '9')
	{
		ans *= 10;
		ans += sig_base * (*nptr++ - '0');
	}

	if (*nptr == '.')
	{
		nptr++;
		while (*nptr >= '0' && *nptr <= '9')
		{
			digit *= 10;
			ans += sig_base * (*nptr++ - '0') / digit;
		}
	}

	if (*nptr == 'e' || *nptr == 'E')
	{
		nptr++;
		if (*nptr == '+')
		{
			nptr++;
		}
		else if (*nptr == '-')
		{
			sig_index = -1;
			nptr++;
		}

		while (*nptr >= '0' && *nptr <= '9')
		{
			index *= 10;
			index += sig_index * (*nptr++ - '0');
		}

		while (index != 0)
		{
			ans *= index > 0 ? 10 : 0.1;
			index > 0 ? index-- : index++;
		}
	}

	return ans;
}

int main()
{   
    char str[128];
	enum func {STRTOI, STRTOL, STRTOF} selected;

	printf("0>>>转换为int型\n1>>>转换为long型\n2>>>转换为double型\n请输入数字选择相应的功能:");
    scanf("%d", &selected);

	printf("请输入要转换的字符串:");
	scanf("%s", str);

	if (selected == STRTOI)
        printf("%d", strtoi(str));
    else if (selected == STRTOL)
        printf("%ld", strtol(str));
    else
        printf("%f", strtof(str));

	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/编程革命者/article/detail/62761?site
推荐阅读
相关标签
  

闽ICP备14008679号