C#で整数をバイナリに変換する


191

整数をそのバイナリ表現に変換する方法は?

私はこのコードを使用しています:

String input = "8";
String output = Convert.ToInt32(input, 2).ToString();

しかし、それは例外を投げます:

解析可能な数字が見つかりませんでした


1
数値の文字列表現または実際の数値を変換しようとしていますか?そして、あなたは10進数、またはintに変換しようとしていますか?あなたの例はあなたの質問と実際には一致しません。
2010年

:あなたはバイトに変換小数に探しているなら、あなたはこのコードを使用することができますgist.github.com/eranbetzalel/...
エランBetzalel

base-10の文字列をbase-2として解析しようとしています。そのため、呼び出しは失敗します。
RJ Dunnill

回答:


361

あなたの例には、文字列として表現された整数があります。整数が実際には整数であり、整数を取得してバイナリ文字列に変換するとします。

int value = 8;
string binary = Convert.ToString(value, 2);

1000を返します。


2進数を10進数に変換する同様の方法はありますか?
kashif 2013年

29
@kashifがint value = Convert.ToInt32("1101", 2)与えるvalue値13を
flindeberg

45

クラシックベースからC#のベースに変換

String number = "100";
int fromBase = 16;
int toBase = 10;

String result = Convert.ToString(Convert.ToInt32(number, fromBase), toBase);

// result == "256"

サポートされるベースは2、8、10、16です


1
これは機能しません。私は単に試しstring binary = Convert.ToString(533, 26);てArgumentExceptionを取得しました:無効なベース
Magnum

5
はい、MSDNから:クラシックベースのみがサポートされています msdn.microsoft.com/en-us/library/8s62fh68(v=vs.110).aspx toBaseタイプ:System.Int32戻り値のベース。 8、10、又は16
sritmak

37

余分なコードがなく、入力、変換、出力のみの非常にシンプルなものです。

using System;

namespace _01.Decimal_to_Binary
{
    class DecimalToBinary
    {
        static void Main(string[] args)
        {
            Console.Write("Decimal: ");
            int decimalNumber = int.Parse(Console.ReadLine());

            int remainder;
            string result = string.Empty;
            while (decimalNumber > 0)
            {
                remainder = decimalNumber % 2;
                decimalNumber /= 2;
                result = remainder.ToString() + result;
            }
            Console.WriteLine("Binary:  {0}",result);
        }
    }
}

1
一般的なアルファベットの場合、これは次のようにする必要があります{[...]} while(decimalNumber> 0);
Stefan Steiger 2015年

decimalNumber = 0の場合、結果は空になります。while(decimalNumber> 0 || string.IsNullOrEmpty(result))に更新してください
akkapolk

13

http://zamirsblog.blogspot.com/2011/10/convert-decimal-to-binary-in-c.html

    public string DecimalToBinary(string data)
    {
        string result = string.Empty;
        int rem = 0;
        try
        {
            if (!IsNumeric(data))
                error = "Invalid Value - This is not a numeric value";
            else
            {
                int num = int.Parse(data);
                while (num > 0)
                {
                    rem = num % 2;
                    num = num / 2;
                    result = rem.ToString() + result;
                }
            }
        }
        catch (Exception ex)
        {
            error = ex.Message;
        }
        return result;
    }

2
これがキセノンの答えとどのように異なるのかわかりません。
Joshua Drake

5
彼はキセノンの前にこれに答えました
Reza Taibur

9

原始的な方法:

public string ToBinary(int n)
{
    if (n < 2) return n.ToString();

    var divisor = n / 2;
    var remainder = n % 2;

    return ToBinary(divisor) + remainder;
}

6

Convert.ToInt32(string, base)ベースへのベース変換は行いません。文字列は指定された基数で有効な数値を含むと想定し、基数10に変換します。

したがって、「8」は2を底とする有効な数字ではないため、エラーが発生します。

String str = "1111";
String Ans = Convert.ToInt32(str, 2).ToString();

表示されます15(1111ベース2 = 15ベース10)

String str = "f000";
String Ans = Convert.ToInt32(str, 16).ToString();

表示され61440ます。


4

この答えはすでにここにあるほとんどの答えに似ていることは知っていますが、forループを使用するものはほとんどないことに気づきました。このコードは機能し、単純であると見なすことができます。つまり、パラメーターを持つToString()のような特別な関数がなくても機能し、長すぎません。たぶん、whileループだけでなくforループを好む人もいますが、これはそれらに適しているかもしれません。

public static string ByteConvert (int num)
{
    int[] p = new int[8];
    string pa = "";
    for (int ii = 0; ii<= 7;ii = ii +1)
    {
        p[7-ii] = num%2;
        num = num/2;
    }
    for (int ii = 0;ii <= 7; ii = ii + 1)
    {
        pa += p[ii].ToString();
    }
    return pa;
}

4
using System;

class Program 
{
    static void Main(string[] args) {

        try {

            int i = (int) Convert.ToInt64(args[0]);
            Console.WriteLine("\n{0} converted to Binary is {1}\n", i, ToBinary(i));

        } catch(Exception e) {
            Console.WriteLine("\n{0}\n", e.Message);
        }
    }

    public static string ToBinary(Int64 Decimal) {
        // Declare a few variables we're going to need
        Int64 BinaryHolder;
        char[] BinaryArray;
        string BinaryResult = "";

        while (Decimal > 0) {
            BinaryHolder = Decimal % 2;
            BinaryResult += BinaryHolder;
            Decimal = Decimal / 2;
        }

        BinaryArray = BinaryResult.ToCharArray();
        Array.Reverse(BinaryArray);
        BinaryResult = new string(BinaryArray);

        return BinaryResult;
    }
}

6
ここで車輪を再発明しています。BCLには、これを行うためのメソッドがすでに含まれています。
Eltariel

4

もう1つの代替方法ですがEnumerable、and を使用したインラインソリューションLINQ

int number = 25;

string binary = Enumerable.Range(0, (int) Math.Log(number, 2) + 1).Aggregate(string.Empty, (collected, bitshifts) => ((number >> bitshifts) & 1 )+ collected);

1
ここでBCL以外の回答の多く(すべてではない)を試した後、これが実際に機能することがわかった最初の回答です。それらのほとんどは見事に失敗します。
InteXX

1
私のコードを発見してくれてありがとう:)しかし、ご覧の
とおり

ええと、私たちはすべてを持つことはできませんね。;-)
InteXX

3

この関数は、C#で整数をバイナリに変換します。

public static string ToBinary(int N)
{
    int d = N;
    int q = -1;
    int r = -1;

    string binNumber = string.Empty;
    while (q != 1)
    {
        r = d % 2;
        q = d / 2;
        d = q;
        binNumber = r.ToString() + binNumber;
    }
    binNumber = q.ToString() + binNumber;
    return binNumber;
}

3
コードが質問にどのように答えるかを説明する必要があります。投稿する前にSOガイドラインをお読みください。
スパークプラグ2018年

上記のコードは、符号なし整数をそのバイナリ文字列に変換します。
Govind

3
class Program
{
    static void Main(string[] args)
    {
        var @decimal = 42;
        var binaryVal = ToBinary(@decimal, 2);

        var binary = "101010";
        var decimalVal = ToDecimal(binary, 2);

        Console.WriteLine("Binary value of decimal {0} is '{1}'", @decimal, binaryVal);
        Console.WriteLine("Decimal value of binary '{0}' is {1}", binary, decimalVal);
        Console.WriteLine();

        @decimal = 6;
        binaryVal = ToBinary(@decimal, 3);

        binary = "20";
        decimalVal = ToDecimal(binary, 3);

        Console.WriteLine("Base3 value of decimal {0} is '{1}'", @decimal, binaryVal);
        Console.WriteLine("Decimal value of base3 '{0}' is {1}", binary, decimalVal);
        Console.WriteLine();


        @decimal = 47;
        binaryVal = ToBinary(@decimal, 4);

        binary = "233";
        decimalVal = ToDecimal(binary, 4);

        Console.WriteLine("Base4 value of decimal {0} is '{1}'", @decimal, binaryVal);
        Console.WriteLine("Decimal value of base4 '{0}' is {1}", binary, decimalVal);
        Console.WriteLine();

        @decimal = 99;
        binaryVal = ToBinary(@decimal, 5);

        binary = "344";
        decimalVal = ToDecimal(binary, 5);

        Console.WriteLine("Base5 value of decimal {0} is '{1}'", @decimal, binaryVal);
        Console.WriteLine("Decimal value of base5 '{0}' is {1}", binary, decimalVal);
        Console.WriteLine();

        Console.WriteLine("And so forth.. excluding after base 10 (decimal) though :)");
        Console.WriteLine();


        @decimal = 16;
        binaryVal = ToBinary(@decimal, 11);

        binary = "b";
        decimalVal = ToDecimal(binary, 11);

        Console.WriteLine("Hexidecimal value of decimal {0} is '{1}'", @decimal, binaryVal);
        Console.WriteLine("Decimal value of Hexidecimal '{0}' is {1}", binary, decimalVal);
        Console.WriteLine();
        Console.WriteLine("Uh oh.. this aint right :( ... but let's cheat :P");
        Console.WriteLine();

        @decimal = 11;
        binaryVal = Convert.ToString(@decimal, 16);

        binary = "b";
        decimalVal = Convert.ToInt32(binary, 16);

        Console.WriteLine("Hexidecimal value of decimal {0} is '{1}'", @decimal, binaryVal);
        Console.WriteLine("Decimal value of Hexidecimal '{0}' is {1}", binary, decimalVal);

        Console.ReadLine();
    }


    static string ToBinary(decimal number, int @base)
    {
        var round = 0;
        var reverseBinary = string.Empty;

        while (number > 0)
        {
            var remainder = number % @base;
            reverseBinary += remainder;

            round = (int)(number / @base);
            number = round;
        }

        var binaryArray = reverseBinary.ToCharArray();
        Array.Reverse(binaryArray);

        var binary = new string(binaryArray);
        return binary;
    }

    static double ToDecimal(string binary, int @base)
    {
        var val = 0d;

        if (!binary.All(char.IsNumber))
            return 0d;

        for (int i = 0; i < binary.Length; i++)
        {
            var @char = Convert.ToDouble(binary[i].ToString());

            var pow = (binary.Length - 1) - i;
            val += Math.Pow(@base, pow) * @char;
        }

        return val;
    }
}

学習ソース:

バイナリについて知っておくべきことすべて

10進数を2進数に変換するアルゴリズムを含む


ToDecimal()メソッドのデモもありがとうございます。
Rajiv 2017年

3
    static void convertToBinary(int n)
    {
        Stack<int> stack = new Stack<int>();
        stack.Push(n);
        // step 1 : Push the element on the stack
        while (n > 1)
        {
            n = n / 2;
            stack.Push(n);
        }

        // step 2 : Pop the element and print the value
        foreach(var val in stack)
        {
            Console.Write(val % 2);
        }
     }

1
こんにちは !投稿したコードにコメントを追加する必要があります:)
toshiro92

この関数は、C#で整数をバイナリに変換します。整数をBinaryに変換するには、商がゼロになるまで商を底で繰り返し除算し、各ステップの残りを書き留めます(値を格納するためにStack.Pushを使用しました)。次に、残りを逆に書き込みます。最後から始め、毎回右側に追加します(値を出力するためにスタックをループします)。
rahul sharma

2
class Program{

   static void Main(string[] args){

      try{

     int i = (int)Convert.ToInt64(args[0]);
         Console.WriteLine("\n{0} converted to Binary is {1}\n",i,ToBinary(i));

      }catch(Exception e){

         Console.WriteLine("\n{0}\n",e.Message);

      }

   }//end Main


        public static string ToBinary(Int64 Decimal)
        {
            // Declare a few variables we're going to need
            Int64 BinaryHolder;
            char[] BinaryArray;
            string BinaryResult = "";

            while (Decimal > 0)
            {
                BinaryHolder = Decimal % 2;
                BinaryResult += BinaryHolder;
                Decimal = Decimal / 2;
            }

            // The algoritm gives us the binary number in reverse order (mirrored)
            // We store it in an array so that we can reverse it back to normal
            BinaryArray = BinaryResult.ToCharArray();
            Array.Reverse(BinaryArray);
            BinaryResult = new string(BinaryArray);

            return BinaryResult;
        }


}//end class Program

2

提供されてConvert.ToString(n, 2)いるBCL は適切ですが、BCLが提供するものよりも数ティック速い別の実装が必要な場合に備えて。

次のカスタム実装は、すべての整数(-veおよび+ ve)に対して機能します。https://davidsekar.com/algorithms/csharp-program-to-convert-decimal-to-binaryから取得した元のソース

static string ToBinary(int n)
{
    int j = 0;
    char[] output = new char[32];

    if (n == 0)
        output[j++] = '0';
    else
    {
        int checkBit = 1 << 30;
        bool skipInitialZeros = true;
        // Check the sign bit separately, as 1<<31 will cause
        // +ve integer overflow
        if ((n & int.MinValue) == int.MinValue)
        {
            output[j++] = '1';
            skipInitialZeros = false;
        }

        for (int i = 0; i < 31; i++, checkBit >>= 1)
        {
            if ((n & checkBit) == 0)
            {
                if (skipInitialZeros)
                    continue;
                else
                    output[j++] = '0';
            }
            else
            {
                skipInitialZeros = false;
                output[j++] = '1';
            }
        }
    }

    return new string(output, 0, j);
}

上記のコードは私の実装です。だから、私はどんなフィードバックも聞きたいです:)


1
    // I use this function
    public static string ToBinary(long number)
    {
        string digit = Convert.ToString(number % 2);
        if (number >= 2)
        {
            long remaining = number / 2;
            string remainingString = ToBinary(remaining);
            return remainingString + digit;
        }
        return digit;
     }

1
        static void Main(string[] args) 
        {
        Console.WriteLine("Enter number for converting to binary numerical system!");
        int num = Convert.ToInt32(Console.ReadLine());
        int[] arr = new int[16];

        //for positive integers
        if (num > 0)
        {

            for (int i = 0; i < 16; i++)
            {
                if (num > 0)
                {
                    if ((num % 2) == 0)
                    {
                        num = num / 2;
                        arr[16 - (i + 1)] = 0;
                    }
                    else if ((num % 2) != 0)
                    {
                        num = num / 2;
                        arr[16 - (i + 1)] = 1;
                    }
                }
            }
            for (int y = 0; y < 16; y++)
            {
                Console.Write(arr[y]);
            }
            Console.ReadLine();
        }

        //for negative integers
        else if (num < 0)
        {
            num = (num + 1) * -1;

            for (int i = 0; i < 16; i++)
            {
                if (num > 0)
                {
                    if ((num % 2) == 0)
                    {
                        num = num / 2;
                        arr[16 - (i + 1)] = 0;
                    }
                    else if ((num % 2) != 0)
                    {
                        num = num / 2;
                        arr[16 - (i + 1)] = 1;
                    }
                }
            }

            for (int y = 0; y < 16; y++)
            {
                if (arr[y] != 0)
                {
                    arr[y] = 0;
                }
                else
                {
                    arr[y] = 1;
                }
                Console.Write(arr[y]);
            }
            Console.ReadLine();
        }           
    }

1
私はコードがかなり基本的で単純ではないが負の数でも機能することを知っています
Kiril Dobrev

32ビット整数を受信して​​いますが、出力配列のサイズは16ビットです。ただ言う...
デビッドシェリア

1
はい、発言は正しいです。このコードにはshortを使用するのが適切ですが、intでも機能します。例は小さい数です。大きな数を使用する場合は、タイプを変更する必要があります。これは、負の数を処理する場合、結果が少なくとも1バイト大きくなるようにする必要があるため、プログラムはこれを反転した追加コードであると認識できるようにするためです。
Kiril Dobrev

1

これは、クラス内のメインメソッドから呼び出すことができる簡潔な関数が必要な場合に役立ちます。int.Parse(toBinary(someint))文字列ではなく数値が必要な場合でも呼び出す必要があるかもしれませんが、このメソッドはかなりうまくいくと思います。さらに、これを使用するように調整できますforのではなく、ループをdo- whileあなたが好む場合。

    public static string toBinary(int base10)
    {
        string binary = "";
        do {
            binary = (base10 % 2) + binary;
            base10 /= 2;
        }
        while (base10 > 0);

        return binary;
    }

toBinary(10)文字列を返します"1010"


これは、Govindの回答とほぼ同じです(驚いたことに、これらすべての回答の中で、右から左への反復の唯一の同等の回答です)。とは言っても、このような文字列の先頭付加が非常に効率的であるかどうかはわかりません。とにかく、組み込みの方法で効率を上げる方法を打ち負かす可能性はほとんどありません。また、これを整数として再度解釈する理由もわかりませんが、そうした場合は、文字列ではなく、これと同様の方法で10のべき乗から出力を作成することでそれを行うことができます。
Rup

1

32桁の10進数を2進数に変換し、部分文字列の可能な組み合わせを見つける必要があるコーディングの課題で、この問題に遭遇しました。

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Numerics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp2
{
    class Program
    {

        public static void Main()
        {
            int numberofinputs = int.Parse(Console.ReadLine());
            List<BigInteger> inputdecimal = new List<BigInteger>();
            List<string> outputBinary = new List<string>();


            for (int i = 0; i < numberofinputs; i++)
            {
                inputdecimal.Add(BigInteger.Parse(Console.ReadLine(), CultureInfo.InvariantCulture));
            }
            //processing begins 

            foreach (var n in inputdecimal)
            {
                string binary = (binaryconveter(n));
                subString(binary, binary.Length);
            }

            foreach (var item in outputBinary)
            {
                Console.WriteLine(item);
            }

            string binaryconveter(BigInteger n)
            {
                int i;
                StringBuilder output = new StringBuilder();

                for (i = 0; n > 0; i++)
                {
                    output = output.Append(n % 2);
                    n = n / 2;
                }

                return output.ToString();
            }

            void subString(string str, int n)
            {
                int zeroodds = 0;
                int oneodds = 0;

                for (int len = 1; len <= n; len++)
                {

                    for (int i = 0; i <= n - len; i++)
                    {
                        int j = i + len - 1;

                        string substring = "";
                        for (int k = i; k <= j; k++)
                        {
                            substring = String.Concat(substring, str[k]);

                        }
                        var resultofstringanalysis = stringanalysis(substring);
                        if (resultofstringanalysis.Equals("both are odd"))
                        {
                            ++zeroodds;
                            ++oneodds;
                        }
                        else if (resultofstringanalysis.Equals("zeroes are odd"))
                        {
                            ++zeroodds;
                        }
                        else if (resultofstringanalysis.Equals("ones are odd"))
                        {
                            ++oneodds;
                        }

                    }
                }
                string outputtest = String.Concat(zeroodds.ToString(), ' ', oneodds.ToString());
                outputBinary.Add(outputtest);
            }

            string stringanalysis(string str)
            {
                int n = str.Length;

                int nofZeros = 0;
                int nofOnes = 0;

                for (int i = 0; i < n; i++)
                {
                    if (str[i] == '0')
                    {
                        ++nofZeros;
                    }
                    if (str[i] == '1')
                    {
                        ++nofOnes;
                    }

                }
                if ((nofZeros != 0 && nofZeros % 2 != 0) && (nofOnes != 0 && nofOnes % 2 != 0))
                {
                    return "both are odd";
                }
                else if (nofZeros != 0 && nofZeros % 2 != 0)
                {
                    return "zeroes are odd";
                }
                else if (nofOnes != 0 && nofOnes % 2 != 0)
                {
                    return "ones are odd";
                }
                else
                {
                    return "nothing";
                }

            }
            Console.ReadKey();
        }

    }
}

0
    int x=550;
    string s=" ";
    string y=" ";

    while (x>0)
    {

        s += x%2;
        x=x/2;
    }


    Console.WriteLine(Reverse(s));
}

public static string Reverse( string s )
{
    char[] charArray = s.ToCharArray();
    Array.Reverse( charArray );
    return new string( charArray );
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.