이 질문에는 부동 소수점 값이 제공됩니다. 우리는 이진 표현에서 설정된 비트 수를 찾아야 합니다.
예를 들어 부동 소수점 수가 0.15625인 경우 6개의 세트 비트가 있습니다. 일반적인 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!