how to convert point decimal to binary code example
Example 1: convert decimal to binary in c++
#include <iostream>
using namespace std;
void decToBinary(int n)
{
int binaryNum[32];
int i = 0;
while (n > 0) {
binaryNum[i] = n % 2;
n = n / 2;
i++;
}
for (int j = i - 1; j >= 0; j--)
cout << binaryNum[j];
}
int main()
{
int n = 17;
decToBinary(n);
return 0;
}
Example 2: 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 3: decimal to binary
import java.util.*;
public class DecimalToBinary {
public static void main(String[] args) {
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());
}
}