你能告诉我如何使用normall c ++代码做这种事。 我不需要着色只有maping。 我必须使用2D阵列吗? 如果我使用数组然后如何不同地标记某些点?
答案 0 :(得分:1)
以下代码完成工作而且非常简单!
#include <iostream>
using namespace std;
void draw(int,int);
int main()
{
cout<<"Main Board\n";
draw(3,4);
system("pause");
}
void draw(int x, int y)
{
for(int i = -6; i < 7; i++)
if (i < 0)
cout<<" "<<i;
else
cout<<" "<<i;
cout<<endl;
for(int i = 0; i < 15; i++)
{
cout<<(char)(i + 49);
for(int j = -6; j < 7; j++)
if(i == y - 1 && j == x)
cout<<" x ";
else
cout<<" . ";
cout<<(char)(i + 49)<<endl;
}
}