logo

Java המרת בינארי לעשרוני

אנחנו יכולים להמיר בינארי עד עשרוני ב-java באמצעות Integer.parseInt() שיטה או לוגיקה מותאמת אישית.

המרת Java בינארית לעשרונית: Integer.parseInt()

השיטה Integer.parseInt() ממירה מחרוזת ל-int עם redix נתון. ה חֲתִימָה של שיטת parseInt() ניתנת להלן:

 public static int parseInt(String s,int redix) 

בואו נראה את הדוגמה הפשוטה של ​​המרת בינארי לעשרוני ב-java.

 public class BinaryToDecimalExample1{ public static void main(String args[]){ String binaryString='1010'; int decimal=Integer.parseInt(binaryString,2); System.out.println(decimal); }} 
בדוק את זה עכשיו

תְפוּקָה:

 10 

בוא נראה דוגמה נוספת לשיטת Integer.parseInt() .

 public class BinaryToDecimalExample2{ public static void main(String args[]){ System.out.println(Integer.parseInt('1010',2)); System.out.println(Integer.parseInt('10101',2)); System.out.println(Integer.parseInt('11111',2)); }} 
בדוק את זה עכשיו

תְפוּקָה:

 10 21 31 

המרת Java בינארית לעשרונית: לוגיקה מותאמת אישית

אנחנו יכולים להמיר בינארי עד עשרוני ב-java באמצעות לוגיקה מותאמת אישית.

 public class BinaryToDecimalExample3{ public static int getDecimal(int binary){ int decimal = 0; int n = 0; while(true){ if(binary == 0){ break; } else { int temp = binary%10; decimal += temp*Math.pow(2, n); binary = binary/10; n++; } } return decimal; } public static void main(String args[]){ System.out.println('Decimal of 1010 is: '+getDecimal(1010)); System.out.println('Decimal of 10101 is: '+getDecimal(10101)); System.out.println('Decimal of 11111 is: '+getDecimal(11111)); }} 
בדוק את זה עכשיו

תְפוּקָה:

 Decimal of 1010 is: 10 Decimal of 10101 is: 21 Decimal of 11111 is: 31