杭电oj 2064 汉诺塔III C语言

杭电oj 2064 汉诺塔III C语言_第1张图片

#include 

void main()
{
	int n, i;
	long long sum[35] = { 2,8,26 };
	for (i = 3; i < 35; i++)
		sum[i] = 3 * sum[i - 1] + 2;
	while (~scanf_s("%d", &n))
		printf("%lld\n", sum[n - 1]);
}

你可能感兴趣的:(算法,数据结构,c语言)