我目前正在自学 C++,但在尝试使用数组时遇到了问题:
我正在尝试制作井字游戏,用户将输入两个整数来宣布他想移动的位置,然后为他们打印出棋盘。
除了,当我尝试修改我的电路板一次时,它通常会改变两个值!
示例)如果我输入的前四个数字是{0,1,1,0}
我希望绘制两个字母——一个“x”和一个“o”。
而是绘制了多个“o”!
感谢您的帮助!
#include <string>
#include <iostream>
using namespace std;
string board[2][2];
int xpos, ypos;
string turn;
int main()
{
for(int i = 0; i < 3; i++)
{
for(int j = 0; j < 3; j++)
{
board[i][j]="-";
}
}
for(int i=0;i<9;i++)
{
if(i%2==0)
turn = "x";
else
turn = "o";
cout<< "Where are you moving?\n";
cin>> xpos >> ypos;
board[xpos][ypos] = turn;
cout<<"The board is:\n";
cout<< board[0][0]+board[0][1]+board[0][2]+ "\n";
cout<< board[1][0]+board[1][1]+board[1][2]+ "\n";
cout<< board[2][0]+board[2][1]+board[2][2]+ "\n";
}
return 0;
}