how to make a binary number inaudrino
byte binary_number = 0b00000000;
how to make a binary number inaudrino
byte binary_number = 0b00000000;
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());
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us