欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

杭电OJ2064 汉诺塔3

程序员文章站 2024-03-24 14:48:10
...

杭电OJ2064 汉诺塔3
杭电OJ2064 汉诺塔3

#include <iostream>
#include <cstdio>
using namespace std;	
__int64 N;
__int64 hanoi(int n)
{  	if (n==1)  
		return 2;
	else{
		return (hanoi(n-1) * 3+2);  
	}
	  
}
int main(){	
	while(cin>>N){
		cout<<hanoi(N)<<endl;
	}
	
	return 0;
}