java decimal to binary code example
Example 1: java integer to binary string
int n = 1000;
String s = Integer.toBinaryString(n);
Example 2: int to binary java
String binary = Integer.toBinaryString(num);
Example 3: Java program to convert decimal number to binary & count number of 1s
import java.util.Scanner;
public class DecimalBinaryDemo
{
public static void main(String[] args)
{
int number, count = 0, temp;
String strConvert = "";
Scanner sc = new Scanner(System.in);
System.out.println("Enter a decimal number : ");
number = sc.nextInt();
while(number > 0)
{
temp = number % 2;
if(temp == 1)
{
count++;
}
strConvert = strConvert + " " + temp;
number = number / 2;
}
System.out.println("Decimal to binary in java : " + strConvert);
System.out.println("Number of 1s : " + count);
sc.close();
}
}
Example 4: Java convert binary to decimal
import java.util.Scanner;
public class BinaryToDecimalDemo
{
public static void main(String[] args)
{
int number, decimal = 0, a = 0;
Scanner sc = new Scanner(System.in);
System.out.println("Please enter binary number: ");
String strBinary = sc.nextLine();
number = Integer.parseInt(strBinary);
while(number != 0){
decimal += (number % 10) * Math.pow(2, a);
number = number / 10;
a++;
}
System.out.println("Decimal number: " + decimal);
sc.close();
}
}
Example 5: Java program to convert decimal to binary using toBinaryString and stack
Convert decimal to binary using toBinaryString() method
public class DecimalToBinary
{
public static void main(String[] args)
{
System.out.println("decimal to binary using toBinaryString() 104: ");
System.out.println(Integer.toBinaryString(104));
System.out.println("\ndecimal to binary using toBinaryString() 554: ");
System.out.println(Integer.toBinaryString(554));
System.out.println("\ndecimal to binary using toBinaryString() 644: ");
System.out.println(Integer.toBinaryString(644));
}
}
Example 6: Java program to convert decimal to binary using toBinaryString and stack
Convert decimal to binary using stack in java
import java.util.*;
public class DecimalBinaryExample
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
Stack<Integer> numStack = new Stack<Integer>();
System.out.println("Please enter a decimal number : ");
int number = sc.nextInt();
while(number != 0)
{
int a = number % 2;
numStack.push(a);
number /= 2;
}
System.out.println("Binary number : ");
while(!(numStack.isEmpty()))
{
System.out.print(numStack.pop());
}
System.out.println();
sc.close();
}
}