有没有办法用更少的代码打印“0”部分?我尝试了各种各样的东西,但我只是疯狂随机打印。如果我尝试使用一个变量的for循环,让每次打印“0”时BlockX阵列都会向上移动,它就会翻转掉。即使我将该变量限制在3。
TIA
编辑:BlockX和BlockY是块的坐标。坐标在其他地方定义。
void Draw()
{
system("cls");
for (int i = 0; i < height + 1; i++)
{
for (int j = 0; j < width + 1; j++)
{
if (j == 10)
{
cout << "|";
}
if (j == width)
{
cout << "|";
}
else if ((j == BlockX[0] && i == BlockY[0]) || (j == BlockX[1] && i == BlockY[1]) || (j == BlockX[2] && i == BlockY[2]) || (j == BlockX[3] && i == BlockY[3]))
{
cout << "0";
}
else
{
cout << " ";
}
}
cout << endl;
}
答案 0 :(得分:1)
为了扩展Tas的想法,你可以编写一个函数来检查这样的坐标。
bool isBlockCoordinate(int i, int j)
{
return ((j == BlockX[0] && i == BlockY[0]) ||
(j == BlockX[1] && i == BlockY[1]) ||
(j == BlockX[2] && i == BlockY[2]) ||
(j == BlockX[3] && i == BlockY[3]));
}
你可以在你的循环中调用它:
if (j == width)
{
cout << "|";
}
else if (isBlockCoordinate(i, j))
{
cout << "0";
}
else
{
cout << " ";
}