まだCを学んでいて、私は疑問に思っていました:
数を考えると、次のようなことは可能ですか?
char a = 5;
printf("binary representation of a = %b",a);
> 101
または、バイナリへの変換を行うために独自のメソッドを作成する必要がありますか?
はい(自分で書いてください)、次の完全な関数のようなものです。
#include <stdio.h> /* only needed for the printf() in main(). */
#include <string.h>
/* Create a string of binary digits based on the input value.
Input:
val: value to convert.
buff: buffer to write to must be >= sz+1 chars.
sz: size of buffer.
Returns address of string or NULL if not enough space provided.
*/
static char *binrep (unsigned int val, char *buff, int sz) {
char *pbuff = buff;
/* Must be able to store one character at least. */
if (sz < 1) return NULL;
/* Special case for zero to ensure some output. */
if (val == 0) {
*pbuff++ = '0';
*pbuff = '\0';
return buff;
}
/* Work from the end of the buffer back. */
pbuff += sz;
*pbuff-- = '\0';
/* For each bit (going backwards) store character. */
while (val != 0) {
if (sz-- == 0) return NULL;
*pbuff-- = ((val & 1) == 1) ? '1' : '0';
/* Get next bit. */
val >>= 1;
}
return pbuff+1;
}
このメインを最後に追加して、動作を確認します。
#define SZ 32
int main(int argc, char *argv[]) {
int i;
int n;
char buff[SZ+1];
/* Process all arguments, outputting their binary. */
for (i = 1; i < argc; i++) {
n = atoi (argv[i]);
printf("[%3d] %9d -> %s (from '%s')\n", i, n,
binrep(n,buff,SZ), argv[i]);
}
return 0;
}
"progname 0 7 12 52 123"
で実行すると、次のようになります。
[ 1] 0 -> 0 (from '0')
[ 2] 7 -> 111 (from '7')
[ 3] 12 -> 1100 (from '12')
[ 4] 52 -> 110100 (from '52')
[ 5] 123 -> 1111011 (from '123')
それを印刷する直接的な方法はありません(つまり、printf
または別の標準ライブラリ関数を使用します)。独自の関数を作成する必要があります。
/* This code has an obvious bug and another non-obvious one :) */
void printbits(unsigned char v) {
for (; v; v >>= 1) putchar('0' + (v & 1));
}
ターミナルを使用している場合は、制御コードを使用して、バイトを自然な順序で出力できます。
void printbits(unsigned char v) {
printf("%*s", (int)ceil(log2(v)) + 1, "");
for (; v; v >>= 1) printf("\x1b[2D%c",'0' + (v & 1));
}
dirkgentlyの回答 に基づいていますが、彼の2つのバグを修正し、常に固定桁数を出力します。
void printbits(unsigned char v) {
int i; // for C89 compatability
for(i = 7; i >= 0; i--) putchar('0' + ((v >> i) & 1));
}
#include<iostream>
#include<conio.h>
#include<stdlib.h>
using namespace std;
void displayBinary(int n)
{
char bistr[1000];
itoa(n,bistr,2); //2 means binary u can convert n upto base 36
printf("%s",bistr);
}
int main()
{
int n;
cin>>n;
displayBinary(n);
getch();
return 0;
}
次のようなルックアップテーブルを使用します。
char *table[16] = {"0000", "0001", .... "1111"};
次に、このように各ニブルを印刷します
printf("%s%s", table[a / 0x10], table[a % 0x10]);
確かに1つのテーブルしか使用できませんが、わずかに高速で大きすぎます。
C言語には、これに対する直接のフォーマット指定子はありません。私はこの簡単なpythonスニペットを書いたのですが、プロセスを段階的に理解して自分でロールするのに役立ちます。
#!/usr/bin/python
dec = input("Enter a decimal number to convert: ")
base = 2
solution = ""
while dec >= base:
solution = str(dec%base) + solution
dec = dec/base
if dec > 0:
solution = str(dec) + solution
print solution
説明:
dec = input( "変換する10進数を入力してください:")-ユーザーに数値入力を求める(たとえば、scanfを介してCでこれを行うには複数の方法があります)
base = 2-ベースが2(バイナリ)であることを指定します
solution = ""-ソリューションを連結する空の文字列を作成します
while dec> = base:-入力したベースよりも数値が大きい間
solution = str(dec%base)+ solution-数値のモジュラスをベースに取得し、それを文字列の先頭に追加します(除算と剰余法を使用して右から左に数値を追加する必要があります) )。 str()関数は、操作の結果を文字列に変換します。型変換なしでは、python)の文字列と整数を連結することはできません。
dec = dec/base-準備のために10進数を底で割り、次のモジュロを取ります
dec> 0の場合:solution = str(dec)+ solution-何かが残っている場合は、先頭に追加します(どちらかといえば1になります)
ソリューションの印刷-最終的な数値を印刷します
このコードは、最大64ビットのニーズを処理する必要があります。
char* pBinFill(long int x,char *so, char fillChar); // version with fill
char* pBin(long int x, char *so); // version without fill
#define width 64
char* pBin(long int x,char *so)
{
char s[width+1];
int i=width;
s[i--]=0x00; // terminate string
do
{ // fill in array from right to left
s[i--]=(x & 1) ? '1':'0'; // determine bit
x>>=1; // shift right 1 bit
} while( x > 0);
i++; // point to last valid character
sprintf(so,"%s",s+i); // stick it in the temp string string
return so;
}
char* pBinFill(long int x,char *so, char fillChar)
{ // fill in array from right to left
char s[width+1];
int i=width;
s[i--]=0x00; // terminate string
do
{
s[i--]=(x & 1) ? '1':'0';
x>>=1; // shift right 1 bit
} while( x > 0);
while(i>=0) s[i--]=fillChar; // fill with fillChar
sprintf(so,"%s",s);
return so;
}
void test()
{
char so[width+1]; // working buffer for pBin
long int val=1;
do
{
printf("%ld =\t\t%#lx =\t\t0b%s\n",val,val,pBinFill(val,so,0));
val*=11; // generate test data
} while (val < 100000000);
}
Output:
00000001 = 0x000001 = 0b00000000000000000000000000000001
00000011 = 0x00000b = 0b00000000000000000000000000001011
00000121 = 0x000079 = 0b00000000000000000000000001111001
00001331 = 0x000533 = 0b00000000000000000000010100110011
00014641 = 0x003931 = 0b00000000000000000011100100110001
00161051 = 0x02751b = 0b00000000000000100111010100011011
01771561 = 0x1b0829 = 0b00000000000110110000100000101001
19487171 = 0x12959c3 = 0b00000001001010010101100111000011
あなたはあなた自身の変容を書かなければなりません。フォーマット指定子では、10進数、16進数、および8進数のみがサポートされています。