JavaAlgorithms/Conversions/BinaryToDecimal.java
Priyansh-Kedia dc5ae2d03b
Update BinaryToDecimal.java
Changed bin_num and bin_copy to binNum and binCopy respectively.
2019-07-10 10:17:08 +05:30

31 lines
700 B
Java

package Conversions;
import java.util.Scanner;
/**
* This class converts a Binary number to a Decimal number
*
*/
class BinaryToDecimal {
/**
* Main Method
*
* @param args Command line arguments
*/
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int binNum, binCopy, d, s = 0, power = 0;
System.out.print("Binary number: ");
binNum = sc.nextInt();
binCopy = binNum;
while (binCopy != 0) {
d = binCopy % 10;
s += d * (int) Math.pow(2, power++);
binCopy /= 10;
}
System.out.println("Decimal equivalent:" + s);
sc.close();
}
}