标签:数学
2 4
4
22
#include <stdio.h> int main() { int n,j=30,tmp=1; long long hash[30];//注意长度 hash[1]=1;//计算后储存 for(n=2;n<30;n++) { tmp=(tmp+1)*2; hash[n]=tmp; } while(scanf("%d",&n)!=EOF) { printf("%d\n",hash[n]); } }
标签:数学
原文地址:http://blog.csdn.net/qq754406613/article/details/46288361