Update BinaryToDecimal.java

Changed bin_num and bin_copy to binNum and binCopy respectively.
This commit is contained in:
Priyansh-Kedia 2019-07-10 10:17:08 +05:30 committed by GitHub
parent 1c3490d25e
commit dc5ae2d03b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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