Exemplo n.º 1
0
int hanoi::find_small() {
	
	if(A.find_small())
		return 1;
	if(B.find_small())
		return 2;
	if(C.find_small())
		return 3; 
}