void GameBoard::print(const GameBoard& computerBoard)
{
Grid[0][0] = '1';
Grid[0][1] = '2';
Grid[1][0] = '3';
int i, j;
int sides = SIZE;
cout << " Your bombs: Your navy:" << endl << endl;
for(i=0; i<SIZE; i++)
{
// prints your bombs
cout << sides << " ";
for(j=0; j<SIZE; j++)
{
cout << computerBoard.Grid[i][j] << " ";
}
cout << " ";
// prints your ships
cout << sides << " ";
for(j=0; j<SIZE; j++)
{
cout << Grid[i][j] << " ";
}
cout << endl << endl;
sides--;
}
j = 0;
cout << "\n ";
for(i=0; i<SIZE; i++)
{
j = i + 'A';
cout << (char)j << " ";
}
cout << " ";
for(i=0; i<SIZE; i++)
{
j = i + 'A';
cout << (char)j << " ";
}
cout << endl << endl;
}
我正在建造一个像战舰一样的游戏,并且需要将for循环改为阅读..
for(i=8;i>0;i--)
为什么会产生错误?
很抱歉,如果这没有意义,Grid [0] [0]应位于左下方,但目前位于左上角。
答案 0 :(得分:8)
我想你想要的是像
for(i=SIZE-1; i>=0; i--)
因为这相当于
for(i=0; i<SIZE; i++)
这两个来自0..SIZE-1
而
for(i=SIZE; i>0; i--)
来自1..SIZE
(因此,如果您使用SIZE
访问长度为arr[i]
的数组,则会产生错误。)