首页 > 解决方案 > Java十进制到二进制转换器的问题

问题描述

我正在学习 Java,并且已经尝试构建这个转换器一个多星期了,但是这种尝试有时会遗漏必要的 0,并且也不会为输入“1”给出结果。

此代码已导入 javax.swing.*;// 允许“JOptionPane.showInputDialog”,一个对输入信息的请求加上一条消息

public static void main(String[] args) {
    // TODO Auto-generated method stub
        char number;
        int input, length;
        String reversedBinary = "", binary = "";

        input = Integer.parseInt(JOptionPane.showInputDialog
                ("What number would you like converted to binary?")); // Requesting user to give input

        do {   // gets the reversed binary. For instance: 5 = 101
            reversedBinary = reversedBinary + "" + input % 2;
            input = input/2;
        } while (input > 0);

        length = reversedBinary.length();
        length--; // getting the usable position numbers instead of having length give me the position one ahead

        while (length > 0) { // some code to reverse the string
            number = reversedBinary.charAt(length);
            binary = binary + number;
            length--; // "reversedBinary" is reversed and the result is input into "binary"
        }
        System.out.print("The number converted to binary is: " + binary); // output result
}

}

标签: javabinary

解决方案


这样的事情会奏效。

    input = Integer.parseInt(JOptionPane.showInputDialog
            ("What number would you like converted to binary?")); // Requesting user to give input
    String BinaryStr="";
    int i = 0;
    while (input > 0){   
        BinaryStr= BinaryStr+  input % 2; 
        input = input/2;
        i++; 
    } 
    for (int j = i - 1; j >= 0; j--) 
        System.out.print(BinaryStr.charAt(j)); 

推荐阅读