[劍指offer刷題 --- 21] 二進制中1的個數

1. 基本思路code int Number1(int n) { int count = 0; while (n != 0) { if (n % 2 == 1) count = count + 1; n = n / 2; } return count; } 當n爲正數時,上述方法有效,但當n爲負數時,上述結果沒
相關文章
相關標籤/搜索