就我而言,我想要的代码如下所示:
anRow0[] = {0,0,0,0,0,0,0}
anRow1[] = {0,0,0,0,0,0,0}
anRow2[] = {0,0,0,0,0,0,0}
int place(int nVar1, int nVar2) //Where nVar1 is the row and nVar2 = current turn
{
int nVert = 0;
while (anRow\i want to add nVar1 here\[nVert+1] && nVert < 6)
{
nVert += 1;
}
anRow[nVert] = nVar2;
return true;
}
我可以为 anRow1[] 等制作几个“ if (nVar1 == 0) //check
,但这似乎效率低下。
有没有办法添加这样的数字?另外,请忽略其余代码,我知道你可以例如用 for 替换 while,但是这不是重点。
感谢任何帮助