Java 菜鳥教程

Java 流程控制

Java 數(shù)組

Java 面向?qū)ο?I)

Java 面向?qū)ο?II)

Java 面向?qū)ο?III)

Java 異常處理

Java 列表(List)

Java Queue(隊(duì)列)

Java Map集合

Java Set集合

Java 輸入輸出(I/O)

Java Reader/Writer

Java 其他主題

Java程序二進(jìn)制數(shù)與十進(jìn)制數(shù)相互轉(zhuǎn)換

Java 實(shí)例大全

在此程序中,您將學(xué)習(xí)使用Java中的函數(shù)實(shí)現(xiàn)二進(jìn)制數(shù)與十進(jìn)制數(shù)相互轉(zhuǎn)換。

示例1:將二進(jìn)制數(shù)轉(zhuǎn)換為十進(jìn)制的程序

public class BinaryDecimal {

    public static void main(String[] args) {
        long num = 110110111;
        int decimal = convertBinaryToDecimal(num);
        System.out.printf("%d 二進(jìn)制 = %d 十進(jìn)制", num, decimal);
    }

    public static int convertBinaryToDecimal(long num)
    {
        int decimalNumber = 0, i = 0;
        long remainder;
        while (num != 0)
        {
            remainder = num % 10;
            num /= 10;
            decimalNumber += remainder * Math.pow(2, i);
            ++i;
        }
        return decimalNumber;
    }
}

運(yùn)行該程序時(shí),輸出為:

110110111 二進(jìn)制 = 439 十進(jìn)制

示例2:將十進(jìn)制數(shù)轉(zhuǎn)換為二進(jìn)制的程序

public class DecimalBinary {

    public static void main(String[] args) {
        int num = 19;
        long binary = convertDecimalToBinary(num);
        System.out.printf("%d 十進(jìn)制 = %d 二進(jìn)制", num, binary);
    }

    public static long convertDecimalToBinary(int n)
    {
        long binaryNumber = 0;
        int remainder, i = 1, step = 1;

        while (n!=0)
        {
            remainder = n % 2;
            System.out.printf("Step %d: %d/2, 余數(shù) = %d, 商 = %d\n", step++, n, remainder, n/2);
            n /= 2;
            binaryNumber += remainder * i;
            i *= 10;
        }
        return binaryNumber;
    }
}

運(yùn)行該程序時(shí),輸出為:

Step 1: 19/2, 余數(shù) = 1, 商 = 9
Step 2: 9/2, 余數(shù) = 1, 商 = 4
Step 3: 4/2, 余數(shù) = 0, 商 = 2
Step 4: 2/2, 余數(shù) = 0, 商 = 1
Step 5: 1/2, 余數(shù) = 1, 商 = 0
19 十進(jìn)制 = 10011 二進(jìn)制

Java 實(shí)例大全

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清