请问,用位操作怎么实现啊 ??????
还请各位写下来吧
#include <stdio.h>
void main(){ int n,m;
printf("Enter the number: "); scanf("%d",&n);
while (n!=0) { m=n%2; printf("%d",m); n=n/2; } printf("\n");}这是我用循环做的.不过结果要反过来读.谁能帮我修正一下.
谢谢大侠 出手相助