HDOJ 1196 Lowest Bit(二进制相关的简单题)
发布日期:2021-06-29 13:33:15 浏览次数:2 分类:技术文章

本文共 1317 字,大约阅读时间需要 4 分钟。

Problem Description

Given an positive integer A (1 <= A <= 100), output the lowest bit of A.

For example, given A = 26, we can write A in binary form as 11010, so the lowest bit of A is 10, so the output should be 2.

Another example goes like this: given A = 88, we can write A in binary form as 1011000, so the lowest bit of A is 1000, so the output should be 8.

Input

Each line of input contains only an integer A (1 <= A <= 100). A line containing “0” indicates the end of input, and this line is not a part of the input data.

Output

For each A in the input, output a line containing only its lowest bit.

Sample Input

26
88
0

Sample Output

2
8

输入一个十进制的数:然后转换为二进制,输出二进制的位数从后面到前面数的第一个1的时候的数的十进制。

例如:26二进制是11010,所以从后面对前面数,第二位为1,所以取值为10,再转换成十进制,输出为2;

import java.util.Scanner;public class Main{    public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        while(sc.hasNext()){            int n =sc.nextInt();            if(n==0){                return ;            }            String str = Integer.toString(n, 2);            //System.out.println(str);            for(int i=str.length()-1;i>=0;i--){                if(str.charAt(i)=='1'){                    System.out.println((int)Math.pow(2, str.length()-1-i));                    break;                }            }        }    }}

转载地址:https://chenhx.blog.csdn.net/article/details/51049723 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:HDOJ 1197 Specialized Four-Digit Numbers
下一篇:HDOJ 1194 Beat the Spread!(简单题)

发表评论

最新留言

关注你微信了!
[***.104.42.241]2024年04月06日 18时52分14秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章