この質問では、浮動小数点値が与えられています。バイナリ表現で設定されたビットの数を見つける必要があります。
たとえば、浮動小数点数が 0.15625 の場合、設定ビットは 6 つあります。一般的な C コンパイラは、単精度浮動小数点表現を使用します。ということで、こんな感じです。
ビット値に変換するには、数値をポインター変数に代入し、そのポインターを char* 型データにキャストする必要があります。次に、各バイトを 1 つずつ処理します。次に、各文字の設定ビットを計算できます。
#include <stdio.h> int char_set_bit_count(char number) { unsigned int count = 0; while (number != 0) { number &= (number-1); count++; } return count; } int count_float_set_bit(float x) { unsigned int n = sizeof(float)/sizeof(char); //count number of characters in the binary equivalent int i; char *ptr = (char *)&x; //cast the address of variable into char int count = 0; // To store the result for (i = 0; i < n; i++) { count += char_set_bit_count(*ptr); //count bits for each bytes ptr++; } return count; } main() { float x = 0.15625; printf ("Binary representation of %f has %u set bits ", x, count_float_set_bit(x)); }
Binary representation of 0.156250 has 6 set bits
以上がC で浮動小数点数の桁数を数えるにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。