hdu 2077

注解:如果。。我说这道题还是猜的话,,额。因为上一道是3^n-1。我还是猜的,3^(n+1)-1

代码如下:

#include<iostream>
#include<algorithm>
#include<cmath>

using namespace std;

int main()
{
	int m,t;

	cin >> t;
	while (t--)
	{
		_int64 ans = 1;
		cin >> m;
		while (m-- > 1)
			ans *= 3;
		ans++;
		cout << ans << endl;
	}

	return 0;
}

    原文作者: 汉诺塔问题
    原文地址: https://blog.csdn.net/qq_40058686/article/details/79948683
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞