Here is what I have so far
Any sugestions would be appreciated
#include <iostream>
using namespace std;
char point[7][7];
char wpos;
char bpos;
void board()
{
cout << " 0 1 2 3 4 5 6\n\n";
cout << "0 " << point[0][0] << "--------" << point[0][3] << "--------" << point[0][6] << "\n";
cout << " | | |\n";
cout << " | | |\n";
cout << "1 | " << point[1][1] << "-----" << point[1][3] << "-----" << point[1][5] << " |\n";
cout << " | | | | |\n";
cout << " | | | | |\n";
cout << "2 | | " << point[2][2] << "--" << point[2][3] << "--" << point[2][4] << " | |\n";
cout << " | | | | | |\n";
cout << " | | | | | |\n";
cout << "3 " << point[3][0] << "--" <<point[3][1] << "--" << point[3][2] << " " << point[3][4] << "--" <<point[3][5] << "--" << point[3][6] << "\n";
cout << " | | | | | |\n";
cout << " | | | | | |\n";
cout << "4 | | " << point[4][2] << "--" << point[4][3] << "--" << point[4][4] << " | |\n";
cout << " | | | | |\n";
cout << " | | | | |\n";
cout << "5 | " << point[5][1] << "-----" << point[5][3] << "-----" << point[5][5] << " |\n";
cout << " | | |\n";
cout << " | | |\n";
cout << "6 " <<point[6][0] << "--------" << point[6][3] << "--------" << point[6][6] << "\n";
}
void wturn()
{
cout << "Input where you would like to move. Example 00 or 53\n";
if(point[0] == 'a' && point[0] == '0'){
point[0][0] = 1};
}
void bturn()
{}
int main()
{
cin >> wpos;
wturn(wpos);
board();
cin >> bpos;
bturn();
board();
}