Skip to main content

Posts

Showing posts with the label Binary

binary to decimal conversion code in java

 binary to decimal conversion code in java Code: import java.util.*; import java.lang.*; import java.io.*; class Test{ public static void main(String[] args){ Scanner scn = new Scanner(System.in); System.out.println("Enter the Binary Number : "); int bin = scn.nextInt(); deci(bin); } public static void deci(int bin){ int res = 0; int i = 0; while(bin!=0){ int r = bin%10; res = res + (r*(int)Math.pow(2,i)); i++; bin = bin/10; } System.out.println(res); } } ex: input : 1010 o/p:  10 input : 1000 o/p: 8 i/p: 10101 o/p: 21

decimal to binary , decimal to octal , decimal to hexadeciaml conversions and vice versa programs in java

 binary to decimal conversion code: import java.util.*; import java.lang.*; import java.io.*; //binary to decimal class Test { public static void main(String[] args){ Scanner scn = new Scanner(System.in); //take the binary number from the user int bin = scn.nextInt(); //write the lgic to convert it into decimal int dec = 0; int i = 0;//digit place while(bin!=0){ //last digit int r = bin%10; //multiple remaider with 2 power digit place dec = dec +(r* (int)Math.pow(2,i)); //increment the position of i i++; //remove the last digit from the number bin = bin/10; } //print the decimal number System.out.println(dec); } } ex:: input : 1010 o/p: 10 input : 1000 o/p: 8 octal to decimal Conversion Code:: import java.util.*; import java.lang.*; import java.io.*; //binary to decimal class Test { public static void main(String[] args){ Scanner scn = new Scanner(System.in); //take the octal number from the user int oct = scn