将一个字符串转换为浮点数
【摘要】 #include <stdio.h>#include <stdlib.h>#include <math.h> double atof(const char *s){ int i = 0; int k = 0; double j; int flag = 1; double result = 0.0; while (s[i] == ' ') {...
-
#include <stdio.h>
-
#include <stdlib.h>
-
#include <math.h>
-
-
double atof(const char *s)
-
{
-
int i = 0;
-
int k = 0;
-
double j;
-
int flag = 1;
-
double result = 0.0;
-
while (s[i] == ' ')
-
{
-
i++;
-
}
-
if (s[i] == '+')
-
{
-
i++;
-
}
-
if (s[i] == '-')
-
{
-
i++;
-
flag = -1;
-
}
-
while (s[i] != '\0' && s[i] != '.')
-
{
-
if (s[i] < '0' || s[i] > '9')
-
{
-
printf("字串含有非数字字符,无法转换!\n");
-
exit(0);
-
}
-
j = (s[i] - '0')*1.0;
-
result = result*10+j;
-
i++;
-
}
-
if (s[i] == '.')
-
{
-
i++;
-
while (s[i] != '\0')
-
{
-
if (s[i] < '0' || s[i] > '9')
-
{
-
printf("字串含有非数字字符,无法转换!\n");
-
exit(0);
-
}
-
k++;
-
j = s[i] - '0';
-
result = result+(1.0 * j)/pow(10,k);
-
i++;
-
}
-
}
-
result = flag * result;
-
return result;
-
}
-
-
int main()
-
{
-
double i;
-
char str[100];
-
printf("请输入一个字符串:");
-
gets(str);
-
i = atof(str);
-
printf("您输入的字符串转换为浮点数是:%f\n",i);
-
return 0;
-
-
}
-
-
-
-
-
-
文章来源: blog.csdn.net,作者:悦来客栈的老板,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq523176585/article/details/11760317
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)