码迷,mamicode.com
首页 > 其他好文 > 详细

11.二进制码

时间:2019-04-06 15:32:14      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:一个   str   turn   length   1的个数   for   public   个数   []   

输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。

两个api的运用:

Integer.toBinaryString(n)

public class Solution {
public int NumberOf1(int n) {
char[] chars = Integer.toBinaryString(n).toCharArray();

  int count = 0;
  for(int i= 0;i < chars.length; i++) {
    if(chars[i] == ‘1‘) {
      count++;
    }
  }


  return count;
  }
}

11.二进制码

标签:一个   str   turn   length   1的个数   for   public   个数   []   

原文地址:https://www.cnblogs.com/wzQingtTian/p/10661841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!