java題目查詢輸入整數二進位制中1的個數
阿新 • • 發佈:2022-03-05
描述
輸入一個正整數,計算它在二進位制下的1的個數。 注意多組輸入輸出!!!!!! 資料範圍:1 \le n \le 2^{31}-1 \1≤n≤231−1輸入描述:
輸入一個整數
輸出描述:
計算整數二進位制中1的個數
示例1
輸入:5輸出:
2說明:
5的二進位制表示是101,有2個1
示例2
輸入:0輸出:
0
1 import java.io.*; 2 import java.util.*; 3 4 public class Main{ 5 public static void main(String[] args) throwsIOException { 6 Scanner sc = new Scanner(System.in); 7 8 while(sc.hasNext()) { 9 int n = sc.nextInt(); 10 String str = Integer.toBinaryString(n); 11 int count = 0; 12 for(int i =0; i < str.length(); i++) { 13 if(str.charAt(i) == '1') 14 count++; 15 } 16 System.out.println(count); 17 } 18 } 19 }