Convert Decimal to Binary
public class Main {
public static void main(String[] args) {
int integer = 127;
String binary = Integer.toBinaryString(integer);
System.out.println("Binary value of " + integer + " is " + binary + ".");
int original = Integer.parseInt(binary, 2);
System.out.println("Integer value of binary '" + binary + "' is " + original + ".");
}
}
Related examples in the same category