|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
这是一个井字棋游戏中的一个功能代码 function()。
下面的代码,我的需求是在不满足条件的时候,返回到do,重新运行。
请问各位大神,我这段代码哪里有问题,第二张图片和第三张图片的输出是一样的,只是换了一种方法写,第二章图片的内容看起来更直接。
多谢各位~
代码1:
void player_movement(){
int n;
mark='X';
do{
printf("please enter your move:\n");
scanf("%d", &choice);
if(choice==1 && board[0][0]=='1')
board[0][0]=mark;
else if(choice==2 && board[0][1]=='2')
board[0][1]=mark;
else if(choice==3 && board[0][2]=='3')
board[0][2]=mark;
else if(choice==4 && board[1][0]=='4')
board[1][0]=mark;
else if(choice==5 && board[1][1]=='5')
board[1][1]=mark;
else if(choice==6 && board[1][2]=='6')
board[1][2]=mark;
else if(choice==7 && board[2][0]=='7')
board[2][0]=mark;
else if(choice==8 && board[2][1]=='8')
board[2][1]=mark;
else if(choice==9 && board[2][2]=='9')
board[2][2]=mark;
else{
n = 0;
printf("Invalid move. This place is taken. Try Again please: \n");
}
}while(n = 0);
}
代码2:
void player_movement(){
mark='X';
int i,j,m,n;
do{
printf("please enter your move:\n");
scanf("%d", &choice);
for (i = 0; i < 3; i++)
{
for (j = 0; j < 3; j++)
{
n = 3*i + j +1;
m = (char)(n+48);
if (choice != n)
continue;
else if (choice == n && board[i][j] == m){ // if (choice==1 && board[0][0]=='1')
board[i][j]=mark; // board[0][0]=mark;
break;}
else
printf("Invalid move. This place is taken. Try Again please: \n");
}}
}while(choice == n && board[i][j] != m);
}
while(n = 0)
while(n == 0)
|
|