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

求最大连续bit数

时间:2015-08-18 19:35:08      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.Scanner;


public class GetContinuous1 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		byte num = scan.nextByte();
		
		String str = Integer.toBinaryString(num);
		String[] strArr = str.split("0");
		int len = strArr[0].length();
		int d = 0;
		for (int i = 1; i < strArr.length; i++) {
			if(strArr[i].length() > len){
				len = strArr[i].length();
				d = i;
			}
		}
		
		System.out.println(strArr[d].length());
	}

}

版权声明:本文为博主原创文章,未经博主允许不得转载。

求最大连续bit数

标签:

原文地址:http://blog.csdn.net/liaction/article/details/47754293

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