题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6033
计算2m−1的位数可以看成m位的2进制换成10进制的位数
#include<bits/stdc++.h>
using namespace std;
int main()
{
int m,i=0;
while(scanf("%d",&m)!=EOF)
{
int ans;
ans=(m*log10(2));
printf("Case #%d: %d\n",++i,ans);
}
return 0;
}