Update BinaryToDecimal.java

Updated some of the variable names for the ease of understanding the process.
This commit is contained in:
Priyansh-Kedia
2019-07-09 23:06:40 +05:30
committed by GitHub
parent 2bf163d6a1
commit 1c3490d25e

View File

@ -15,14 +15,14 @@ class BinaryToDecimal {
*/ */
public static void main(String args[]) { public static void main(String args[]) {
Scanner sc = new Scanner(System.in); Scanner sc = new Scanner(System.in);
int n, k, d, s = 0, c = 0; int bin_num, bin_copy, d, s = 0, power = 0;
System.out.print("Binary number: "); System.out.print("Binary number: ");
n = sc.nextInt(); bin_num = sc.nextInt();
k = n; bin_copy = bin_num;
while (k != 0) { while (bin_copy != 0) {
d = k % 10; d = bin_copy % 10;
s += d * (int) Math.pow(2, c++); s += d * (int) Math.pow(2, power++);
k /= 10; bin_copy /= 10;
} }
System.out.println("Decimal equivalent:" + s); System.out.println("Decimal equivalent:" + s);
sc.close(); sc.close();