A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. #include <stdio.h>
  2. void printfBinary(int a){
  3.     if(a<0){
  4.         printf("1");
  5.     }else{
  6.         printf("0");
  7.     }
  8.     int count=(sizeof(int)*8)-2;
  9.     int temp=0;
  10.     while(count>=0){
  11.         temp=a>>count&1;
  12.         printf("%d",temp);
  13.         if (0==count%4) {
  14.             printf(" ");
  15.         }
  16.         count--;
  17.     }
  18.     printf("\n");
  19. }
  20. int main(){
  21.     printfBinary(-1);
  22.     return 0;
  23. }
复制代码

1 个回复

倒序浏览
刘家亮 来自手机 中级黑马 2015-10-24 00:27:52
沙发
这个了解就好。大多数出去找工作都用不上来自: iPhone客户端
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马