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

c语言将浮点型数据转换成字符串

时间:2015-03-12 01:03:48      阅读:941      评论:0      收藏:0      [点我收藏+]

标签:c语言   浮点转字符串   


在程序中,可能会遇到需要将浮点型的数据转换成字符串:

 #include<stdio.h>
void float2char(float,char*,int);
int main()
{
    char buffer[10];
    float2char(123.4567,buffer,10);
    printf("%f 转换成字符串 %s\n",123.4567,buffer);
    float2char(-654.321,buffer,10);
    printf("%f 转换成字符串 %s\n",-654.321,buffer);
    return 0;
}
void float2char(float slope,char*buffer,int n)  //浮点型数,存储的字符数组,字符数组的长度
{
    int temp,i,j;
    if(slope>=0)//判断是否大于0
        buffer[0] = ‘+‘;
    else
    {
        buffer[0] = ‘-‘;
        slope = -slope;
    }
    temp = (int)slope;//取整数部分
    for(i=0;temp!=0;i++)//计算整数部分的位数
        temp /=10;
    temp =(int)slope;
    for(j=i;j>0;j--)//将整数部分转换成字符串型
    {
        buffer[j] = temp%10+‘0‘;
        temp /=10;
    }
    buffer[i+1] = ‘.‘;
    slope -=(int)slope;
    for(i=i+2;i<n-1;i++)//将小数部分转换成字符串型
    {
        slope*=10;
        buffer[i]=(int)slope+‘0‘;
        slope-=(int)slope;
    }
    buffer[n-1] = ‘\0‘;
}

                技术分享

本文出自 “无用大叔” 博客,请务必保留此出处http://aslonely.blog.51cto.com/6552465/1619533

c语言将浮点型数据转换成字符串

标签:c语言   浮点转字符串   

原文地址:http://aslonely.blog.51cto.com/6552465/1619533

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