您好,登錄后才能下訂單哦!
#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; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。