C语言求一个32位数的原码、补码、反码、和移码。

因为浮点数还须要考虑浮点数的存储方式,因此目前暂时提供正数的补码、反码、移码内存 源代码以下:string #include <stdio.h> #include <stdlib.h> #include <string.h> void ShowValueBin(int bits, int value) {     int i;     for(i = bits-1; i >=0; i--)   
相关文章
相关标签/搜索