logo

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

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

המרה ג'אווה עשרונית לבינארית: Integer.toBinaryString()

השיטה Integer.toBinaryString() ממירה מחרוזת עשרונית לבינארית. ה חֲתִימָה של שיטת toBinaryString() ניתנת להלן:

 public static String toBinaryString(int decimal) 

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

 public class DecimalToBinaryExample1{ public static void main(String args[]){ System.out.println(Integer.toBinaryString(10)); System.out.println(Integer.toBinaryString(21)); System.out.println(Integer.toBinaryString(31)); }} 
בדוק את זה עכשיו

תְפוּקָה:

 1010 10101 11111 

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

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

 public class DecimalToBinaryExample2{ public static void toBinary(int decimal){ int binary[] = new int[40]; int index = 0; while(decimal > 0){ binary[index++] = decimal%2; decimal = decimal/2; } for(int i = index-1;i >= 0;i--){ System.out.print(binary[i]); } System.out.println();//new line } public static void main(String args[]){ System.out.println('Decimal of 10 is: '); toBinary(10); System.out.println('Decimal of 21 is: '); toBinary(21); System.out.println('Decimal of 31 is: '); toBinary(31); }} 
בדוק את זה עכשיו

תְפוּקָה:

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