如何创建将实数转换为二进制数的程序

时间:2012-11-25 14:39:59

标签: c# java

我希望有人能帮助我,并向我解释。这不仅是我想要的答案,而且我也希望了解它。我做了我的研究,但似乎我找不到与我发布的问题相似或相关的答案。我对编程并不是很擅长,但我想知道并了解更多内容。

4 个答案:

答案 0 :(得分:1)

在Java中,执行此操作的标准方法是Integer.toBinaryString。但是,如果您想创建自己的方法,可以看一下:

public static String toBinaryString(int n) {
    String s = "";  // you can also use a StringBuilder here
    do {
        s = (n % 2) + s;  // add to front: 0 if n is divisible by 2,
                          // 1 if n is not divisble by 2.
        n /= 2;  // divide n by 2 to obtain next digit of
                 // binary representation in next iteration
    } while (n != 0);
    return s;
}

尽管这是用Java编写的,但几乎任何语言都可以采用类似的方法。


这是Integer.toBinaryString归结为(实际上这个方法调用另一个辅助方法):

public static String toBinaryString(int i) {  
    char[] buf = new char[32];
    int charPos = 32;
    do {
        buf[--charPos] = digits[i & 1];
        i >>>= 1;  // i.e. i /= 2
    } while (i != 0);

    return new String(buf, charPos, (32 - charPos));
}

其中digits定义为

final static char[] digits = { '0', '1', '2', '3', '4', '5', '6', '7',
        '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
        'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
        'w', 'x', 'y', 'z' };

答案 1 :(得分:0)

此链接描述了从基数10转换为二进制的算法 - http://chortle.ccsu.edu/assemblytutorial/zAppendixH/appH_4.html

答案 2 :(得分:0)

对于Java,请浏览API并阅读Integer。已有一种方法可以为您执行此操作,称为toBinaryString(int i)

http://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#toBinaryString(int

答案 3 :(得分:0)

表示c#:

int startVal = 7;
int base = 2;
string binary = Convert.ToString(startVal, base); 

如果你想在c ++中使用算法:

int i, n, a[100], m=0;
while(n!=0)
{
a[m++] = n%2;
n /= 2;
}
for(i=m-1;i>=0; --i)
cout<<a[i];