logo

Java 2 進数から 10 進数への変換

変換できます Javaでの2進数から10進数への変換 使用して Integer.parseInt() メソッドまたはカスタム ロジック。

Java 2 進数から 10 進数への変換: Integer.parseInt()

Integer.parseInt() メソッドは、指定された redix を使用して文字列を int に変換します。の サイン parseInt() メソッドの内容は以下のとおりです。

 public static int parseInt(String s,int redix) 

Java で 2 進数を 10 進数に変換する簡単な例を見てみましょう。

 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 2 進数から 10 進数への変換: カスタム ロジック

変換できます Javaでの2進数から10進数への変換 カスタム ロジックを使用します。

 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