标签:des style blog color io java strong for 数据
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 34943 Accepted Submission(s):
26317
1 #include<cstdio> 2 int main() 3 { 4 int n; 5 while(scanf("%d",&n)==1) 6 { 7 if(n<=1||n>=30)return 0; 8 int sum=1; 9 for(int i=1;i<n;i++)sum=(sum+1)*2; 10 printf("%d\n",sum); 11 } 12 return 0; 13 }
标签:des style blog color io java strong for 数据
原文地址:http://www.cnblogs.com/The-courage-that-year/p/3993468.html