3

我用 C 语言编写了一个程序,将二进制( ) 表示的浮点数转换1101.11为十进制 ( 13.75)。

但是,我似乎无法从算法中得到正确的值。

将二进制浮点数转换为十进制的正确方法是什么?

我正在使用 Dev CPP 编译器(32 位)。算法定义如下:

void b2d(double p, double q )
{
   double rem, dec=0, main, f, i, t=0;

   /* integer part operation */    
   while ( p >= 1 )
   {
     rem = (int)fmod(p, 10);
     p = (int)(p / 10);
     dec = dec + rem * pow(2, t);
     t++;
   }

   /* fractional part operation */
   t = 1; //assigning '1' to use 't' in new operation
   while( q > 0 )
   {
     main = q * 10;
     q = modf(main, &i); //extration of frational part(q) and integer part(i)
     dec = dec+i*pow(2, -t);
     t++;
   }

   printf("\nthe decimal value=%lf\n",dec); //prints the final output
}

int main()
{
   double bin, a, f;

   printf("Enter binary number to convert:\n");
   scanf("%lf",&bin);

   /* separation of integer part and decimal part */
   a = (int)bin;
   f = bin - a;       
   b2d(a, f); // function calling for conversion

   getch();
   return 0;
}
4

3 回答 3

4

正如您所相信的那样,您不会将“1101.11”读取为以二进制表示的浮点数。您正在将其读取为转换为 IEEE 双精度浮点值的 base-10 浮点数然后尝试更改基数。

此中间步骤固有的不精确性是您出现问题的原因。

正如 Vicky 所建议的,一种更好的方法是:

  1. 将“1101.11”读为字符串或文本行
  2. 转换整数和小数部分(whole=b1101=13numerator=b11=3denominator=4
  3. 将这些重新组合成whole + numerator/denominator = 13.75
于 2013-04-02T16:14:10.200 回答
4

解决方案

以下将按预期工作:

输出:

➤ gcc bin2dec.c -lm -o bin2dec && bin2dec
1101.11 -> 13.750000
1101 -> 13.000000
1101. -> 13.000000
.11 -> 0.750000

代码 ( bin2dec.c):

#include <stdio.h>
#include <math.h>

double convert(const char binary[]){
  int bi,i;
  int len = 0;
  int dot = -1;
  double result = 0;

  for(bi = 0; binary[bi] != '\0'; bi++){
    if(binary[bi] == '.'){
      dot = bi;
    }
    len++;
  }
  if(dot == -1)
    dot=len;

  for(i = dot; i >= 0 ; i--){
    if (binary[i] == '1'){
      result += (double) pow(2,(dot-i-1));
    }
  }
  for(i=dot; binary[i] != '\0'; i++){
    if (binary[i] == '1'){
      result += 1.0/(double) pow(2.0,(double)(i-dot));
    }
  }
  return result;
}

int main()
{
   char  bin[] = "1101.11";
   char  bin1[] = "1101";
   char  bin2[] = "1101.";
   char  bin3[] = ".11";

   printf("%s -> %f\n",bin, convert(bin)); 
   printf("%s -> %f\n",bin1, convert(bin1)); 
   printf("%s -> %f\n",bin2, convert(bin2)); 
   printf("%s -> %f\n",bin3, convert(bin3)); 

   return 0;
}

解释

上面的代码首先找到数字中小数点的索引。

一旦知道这一点,它就会从该索引向前和向后遍历字符串,将适当的值添加到result变量中。

第一个循环从小数点向后走,如果字符是 ,则累积 2 的幂1。它将与小数点的距离作为 2 的幂,减去 1 以使索引正确。即,它累积:

pow(2,<distance-from-decimal-point>)

当索引到达字符串的开头时,循环停止。

第二个循环向前走直到字符串的末尾,并按预期处理小数部分,它也使用与索引的距离,但这次累积小数部分:

1/pow(2,<distance-from-decimal-point>)

制定的例子:

1101.11 = 1101 + 0.11

1101 = 1*2^3 + 1*2^2 + 0*2^1 + 1*2^0 = 8 + 4 + 0 + 1 = 13

0.11 = 1/(2^1) + 1/(2^2) = 0.5 + 0.25 = 0.75

1101.11 = 13.75

谨防格式错误的输入。“10gsh.9701072.67812”会给你一个结果。意义不大:)

于 2013-04-02T16:24:37.177 回答
3

这段代码行为异常:我添加了一些简单的打印语句

  while(q>0)
  {
     double i;
     main=q*10.0;
     q=modf(main, &i); //extration of frational part(q) and integer part(i)
     cout << "main = " << main << " frac part " << q << " int part " << i << endl;
     cin.get();
     dec=dec+i*pow(2,-t);
     t++;
  }

当您输入 1101.11 时,会显示以下输出:

Enter binary number to convert(e.g: 1101.11 which will be 13.75 in decimal):
1101.11
bin in main 1101.11
p  1101 q 0.11

//inside the above while loop code
main = 1.1 frac part 0.1 int part 1
main = 1 frac part 1 int part 0  //^^^^^Error, given main=1, it should output integer part 1, fraction part 0
main = 10 frac part 1 int part 9  //^^^^^same strange error here, it should exit while already

所以你得到了错误的结果。我modf用输入1单独测试,它给出了正确的结果。

所以我的猜测是您正在将二进制数读取为双精度数,然后尝试将此双精度数转换为二进制数。数字的精度可能在幕后发生了一些事情,尽管它表明它是1101.11. 正如@Useless 所建议的,您可能需要将数字读取为字符串,找出小数点前后的子字符串.然后将这两个部分分别转换为十进制。

于 2013-04-02T16:19:06.900 回答