-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d808d72
commit a2966bc
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import java.util.Scanner; | ||
|
||
public class binToDec { | ||
|
||
|
||
public static void binToDecConversion(int binNum){ | ||
int myNum = binNum; | ||
int pow = 0; | ||
int decNum = 0; | ||
|
||
while(binNum > 0){ | ||
int lastDigit = binNum % 10; | ||
decNum = decNum + (lastDigit * (int)Math.pow(2, pow)); | ||
pow++; | ||
|
||
binNum = binNum / 10; | ||
} | ||
System.out.println("decimal of " + myNum + " = " + decNum); | ||
|
||
} | ||
public static void main(String args[]){ | ||
Scanner sc = new Scanner(System.in); | ||
|
||
binToDecConversion(100); | ||
sc.close(); | ||
} | ||
} | ||
|
||
// kisi bhi num ko 100th place pr bhejna ka meaning hai usko 10 to the power 2 se multiply krna , similarly for other |