判断题

函数如下: int function(x) { int f...

发布于 2022-03-03 17:00:00

函数如下:
int function(x)  { 
    int flag = 0 
    while(x)  { 
          x = x&(x-1) 
          flag ++ 
     } 
    return flag  
} 

function(9561) =()
关注者
0
被浏览
24