标签:des style blog io color sp 数据 div on
1 #include <stdio.h> 2 3 int main(){ 4 int T; 5 int number; 6 int result; 7 8 scanf("%d",&T); 9 10 while(T--){ 11 result=3; 12 scanf("%d",&number); 13 14 while(number--){ 15 result=(result-1)*2; 16 } 17 18 printf("%d\n",result); 19 } 20 21 return 0; 22 }
标签:des style blog io color sp 数据 div on
原文地址:http://www.cnblogs.com/zqxLonely/p/4057992.html