HDOJ2042 不容易系列之二

这道题容易

#include<iostream>
using namespace std;

int main(){
    int n,a,total;
    scanf("%d",&n);
    while(n--){
        total=3;
        scanf("%d",&a);
        for(int i=1;i<=a;i++)
           total=2*(total-1);
        
        printf("%d\n",total);
            }
    return 0;
    }


你可能感兴趣的:(杭电oj)