2195 Blah-数集
先定义一个x和一个n
输入n
循环从1到n-1,
每次
x = 2*x+1;
for循环内容如下:
for(int i=1;i<=n-1;i++)x = 2*x+1;
shui