此代码如何工作?我对第一个for循环感到困惑,因为二进制从0开始,只要它不等于char的二进制表示形式,它将增加,所以二进制是1,依此类推?
无符号字符c; 二进制整数;
scanf("%c", &c);
getchar();
printf("The decimal representation is: %d\n", c);
for (binary = 0; (1<<binary)<=c; binary++){ // moving to the left
} // until binary code matches c
printf("The backwards binary representation is: ");
for (int i=0; i<binary; i++){ // since we know the size
printf("%d", ((c>>i)&1)); // 1s and 0s are shifted to right
}
printf("\n");
return 0;
答案 0 :(得分:1)
此:
for (binary = 0; (1<<binary)<=c; binary++)
简单地计算整数“ c”中有多少有效位。
例如,如果“ c”的二进制值为0101100,则最高有效位是从右数第6位,而“二进制”将被设置为6。
如果“ c”的二进制值为01,则最高有效位是从右开始的第一位,“二进制”将被设置为1。
此代码的最大问题是其几乎无用的注释。 如果必须有评论,请替换为:
/* moving to the left until binary code matches c */
与此:
/* Count number of significant bits.*/
评论应该说为什么存在代码,而不是描述其工作原理。
这样的评论没有任何目的:
/* since we know the size 1s and 0s are shift to right */
第二大问题是变量名。 “二进制”具有误导性。改名为“ number_of_significant_bits”,该代码几乎不需要任何注释。