在此問題中,給出了一個浮點數值。我們必須找到它的二進位表示中的設定位的數量。
例如,如果浮點數是0.15625,則有六個設定位。典型的 C 編譯器使用單精度浮點表示。所以它看起來像這樣。
要轉換為位元值,我們必須將數字放入指標變數中,然後將指標強制轉換為 char* 類型資料。然後對每個位元組進行一一處理。然後我們可以計算每個字元的設定位。
#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中文網其他相關文章!