地址:
思路:没啥说的。。。
1 #include2 int main() 3 { 4 int m,x; 5 while(scanf("%d",&m)!=EOF) 6 { 7 x=1; 8 while(--m) 9 x=(x+1)<<1;10 printf("%d\n",x);11 }12 return 0;13 }
本文共 298 字,大约阅读时间需要 1 分钟。
地址:
思路:没啥说的。。。
1 #include2 int main() 3 { 4 int m,x; 5 while(scanf("%d",&m)!=EOF) 6 { 7 x=1; 8 while(--m) 9 x=(x+1)<<1;10 printf("%d\n",x);11 }12 return 0;13 }
转载于:https://www.cnblogs.com/mycapple/archive/2012/08/18/2645096.html