From 1c3490d25e8e920efc83890a5336ac89af28220b Mon Sep 17 00:00:00 2001 From: Priyansh-Kedia <52661249+Priyansh-Kedia@users.noreply.github.com> Date: Tue, 9 Jul 2019 23:06:40 +0530 Subject: [PATCH] Update BinaryToDecimal.java Updated some of the variable names for the ease of understanding the process. --- Conversions/BinaryToDecimal.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Conversions/BinaryToDecimal.java b/Conversions/BinaryToDecimal.java index 91f1b7bc2..242055348 100644 --- a/Conversions/BinaryToDecimal.java +++ b/Conversions/BinaryToDecimal.java @@ -15,14 +15,14 @@ class BinaryToDecimal { */ public static void main(String args[]) { 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: "); - n = sc.nextInt(); - k = n; - while (k != 0) { - d = k % 10; - s += d * (int) Math.pow(2, c++); - k /= 10; + bin_num = sc.nextInt(); + bin_copy = bin_num; + while (bin_copy != 0) { + d = bin_copy % 10; + s += d * (int) Math.pow(2, power++); + bin_copy /= 10; } System.out.println("Decimal equivalent:" + s); sc.close();