For loop keeping jumping over its self.
void DrawBoard(){
cout << " | 1 2 3 4 5 6 7 8 9" << endl;
cout << "_ | _ _ _ _ _ _ _ _ _" << endl;
for (int i = 0; i < width; i++)
{
cout << width << " | ";
for (int i = 0; i < height; i++)
{
cout << height << " ";
}
cout << endl;
}
}