Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~606 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for crystalll

how would I get this code to recognize a tie in the game? /* TicTacToe Game */ #include <iostream> #include <sstream> #include <string> namespace Games { class TicTacToe { public: TicTacToe(void); void Play(void); void Reset(void); private: char board[9]; char player; static int wins[24]; void displayBoard(void); bool getMove(void); void initializeBoard(void); void …

Member Avatar for Schol-R-LEA
0
606