30 decimal to binary code example
Example: decimal to binary
//Java Solution for Decimal To Binary Conversion
import java.util.*;
public class DecimalToBinary {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int dec = sc.nextInt();
StringBuffer sb = new StringBuffer();
while(dec!=0)
{
sb.append(dec%2);
dec=dec/2;
}
System.out.println(sb.reverse());
}
}