溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

漢諾塔 游戲版本

發(fā)布時(shí)間:2020-07-14 16:35:19 來(lái)源:網(wǎng)絡(luò) 閱讀:224 作者:wzdouban 欄目:編程語(yǔ)言
 #include<iostream>
using namespace std;
int A[4][7]={{0},{4,11,3,2,1,0,0},{1,11,0,0,0,0,0},{1,11,0,0,0,0,0}};
void show()
{
//for(int i=1;i<=3;i++){ for(int j=0;j<7;j++)  cout<<A[i][j]<<" ";cout<<endl;}
cout<<"---------------------- "<<endl;
for(int i=6;i>0;i--)
  {
   for(int j=1;j<4;j++)  
      {
         if(A[j][i]==0)cout<<"                           ";
         if(A[j][i]==1)cout<<"            [1]            ";
         if(A[j][i]==2)cout<<"          [  2  ]          ";
         if(A[j][i]==3)cout<<"         [   3   ]         ";
         if(A[j][i]==4)cout<<"        [    4    ]        ";
         if(A[j][i]==5)cout<<"       [     5     ]       ";
        if(A[j][i]==11)cout<<"[-------------------------]";           
      }
   cout<<endl;
  }
}
void play()
{
int m,n;

show();
cout<<"  enter  m  to   n  "<<endl;
cin>>m>>n;
if(m==n)play();
if(1>m||m>3||1>n||n>3)play();
if(A[m][A[m][0]]<A[n][A[n][0]])
{
A[n][0]++;
A[n][A[n][0]]=A[m][A[m][0]];
A[m][A[m][0]]=0;    A[m][0]--;
}

play();
}
int main()
{ 
	play();
	return 0;
}


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI