计算得到数字1的发生的概率是多少,用C语言的程序的设计的实现的方式怎么做

Problem Description
LL is very lazy. Recently, he is assigned to a dormitory in the 5th floor and sometimes it's hard for him to decide whether to step out for some snack at night. So he choose two positive integers x, y and decide to go or not to go by the low bit of x (l is the length of x in binary representation). If it is "1", he choose to go and if it is "0", he stay in the dormitory.

Input
Each line contain two positive integers a and b (both not larger than 10^7 and a<=b). x is randomly chosen from [a,b]. No limit on y.

Output
For each case, output the probability (accurate to 6 fractional digits) of getting "1".

Sample Input
1 1
3 5

Sample Output
1.000000
0.666667

#include<stdio.h>
int main() {
    int a, b, count;
    while (1) {
        count = 0;
        scanf("%d%d", &a, &b);
        count = (b - a) >> 1;
        if (a & 1 || b & 1)
            ++count;
        printf("%0.6lf\n", count / double(b - a + 1));
    }
    return 0;
}