Skip to content

Commit

Permalink
Added binToDec.java
Browse files Browse the repository at this point in the history
  • Loading branch information
gulatikeshav authored Oct 31, 2023
1 parent d808d72 commit a2966bc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions binToDec.java
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

0 comments on commit a2966bc

Please sign in to comment.