Update BinaryToDecimal.java
Changed bin_num and bin_copy to binNum and binCopy respectively.
This commit is contained in:
parent
1c3490d25e
commit
dc5ae2d03b
@ -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 bin_num, bin_copy, d, s = 0, power = 0;
|
int binNum, binCopy, d, s = 0, power = 0;
|
||||||
System.out.print("Binary number: ");
|
System.out.print("Binary number: ");
|
||||||
bin_num = sc.nextInt();
|
binNum = sc.nextInt();
|
||||||
bin_copy = bin_num;
|
binCopy = binNum;
|
||||||
while (bin_copy != 0) {
|
while (binCopy != 0) {
|
||||||
d = bin_copy % 10;
|
d = binCopy % 10;
|
||||||
s += d * (int) Math.pow(2, power++);
|
s += d * (int) Math.pow(2, power++);
|
||||||
bin_copy /= 10;
|
binCopy /= 10;
|
||||||
}
|
}
|
||||||
System.out.println("Decimal equivalent:" + s);
|
System.out.println("Decimal equivalent:" + s);
|
||||||
sc.close();
|
sc.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user