hdu 1196 Lowest Bit【位运算】

 http://acm.hdu.edu.cn/showproblem.php?pid=1196

因为奇数的rightmost位肯定为1,结果也为1;只需处理偶数就ok

#include<iostream>
#include<vector>
#include<map>
#include<stack>
#include<algorithm>
#include<queue>
#include<list>
#include<set>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<stdio.h>
#include<ctype.h>
using namespace std;

#define LL long long

int fun(int n)
{
    int ans=1;
    while((n&1)==0)
    {
        ans*=2;
        n=n>>1;
    }
    return ans;
}

int main()
{
    int n;
    while(scanf("%d",&n) &&n )
    {
        printf("%d\n",fun(n));
    }
    return 0;
}


 

你可能感兴趣的:(hdu 1196 Lowest Bit【位运算】)