Im very new to c++ and i need help with this, would be much appreciated. what im trying to do is make a game called Malom/ Nine Mens Morris where you display the board... where you use varabiles to store locations of the points and users type in location of where the points are placed. My board got messed up when i copy and pasted it but i just need help with the board so a user can type in coords (1,A) and an X shows up if some can some1 show me what to do for 1 point id be able to finish this thanks in advance.... what my chart is sopost to look like
http://www.asij.ac.jp/elementary/gr1web/images/Ninemen.jpg
cout << " 1 |-------------|-------------| " << endl;
cout << " | | | " << endl;
cout << " 2 | |---------|---------| | " << endl;
cout << " | | | | | " << endl;
cout << " 3 | | |-----|-----| | | " << endl;
cout << " | | | | | | " << endl;
cout << " | | | | | | " << endl;
cout << " | | | | | | " << endl;
cout << " 4 |---|---| |---|---| " << endl;
cout << " | | | | | | " << endl;
cout << " | | | | | | " << endl;
cout << " | | | | | | " << endl;
cout << " 5 | | |-----|-----| | | " << endl;
cout << " | | | | | " << endl;
cout << " 6 | |---------|---------| | " << endl;
cout << " | | | " << endl;
cout << " 7 |-------------|-------------| " << endl;
cout << " A B C D E F G " << endl;