يمكننا تحويل من عشري إلى ثنائي في جافا استخدام 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
جافا العشري لتحويل الثنائي: المنطق المخصص
يمكننا تحويل من عشري إلى ثنائي في جافا باستخدام المنطق المخصص.
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