求下面函數的返回值(微軟) int func(x) { int countx = 0; while(x) { countx ++; x = x&( x-1); } return countx; } 假定x = 9999。
m.wangchao.net.cn