I'm currently working on a homework assignment for my C++ class to make a multi-player Tic-tac-toe game but I'm having trouble with the input part of the program (I've got almost everything else running).
Anyway, my goal is to prompt the current player for a row and a column in the format row,col. Then I need to place their mark in a two dimensional array that represents the game board.
I thought that I could simply read their input into a char array using cin and then take the 0 position and 2 position in that array and I would have my two numbers from their input. However, if I do this, I end up with the ASCII values of the input, not the number (for example, I get 49 instead of '1').
I feel like I'm probably overlooking something really simple, so any input would be very helpful and much appreciated. Here is what I had:
void getEntry(char XorO, char gameBoard[GRID_SIZE][GRID_SIZE])
{
char entry[3];
cout << XorO << " - enter row,col: ";
cin >> entry;
int row = entry[0];
int col = entry[2];
//Then I would use the row, col to pass the XorO value into the gameBoard
}
std::stringinstead? – C. Lang Jan 22 at 19:04