HDU 2042 不容易系列之二

题目地址:点击打开链接

思路:水题

AC代码:

#include <iostream>

using namespace std;

int f(int x)
{
    if(x == 0)
        return 3;
    return (f(x - 1) - 1) * 2;
}
int main()
{
    int n,a;
    cin>>n;
    while(n--)
    {
        cin>>a;
        cout<<f(a)<<endl;
    }
    return 0;
}


你可能感兴趣的:(HDU 2042 不容易系列之二)