Tic Tac Toe algorithm and source code in Java
Developed a computer algorithm that play with user in Tik Tac Toe Game..
User Move and Computer moves are distinguished by characters X and O ( upper case)
** YOUR MOVE **
Enter the row:
0
Enter the col:
0
X | | |
| | |
| | |
** COMPUTER MOVE **
X | | |
| O | |
| | |
** YOUR MOVE **
Enter the row:
0
Enter the col:
1
X | X | |
| O | |
| | |
** COMPUTER MOVE **
X | X | O |
| O | |
| | |
** YOUR MOVE **
Enter the row:
2
Enter the col:
0
X | X | O |
| O | |
X | | |
** COMPUTER MOVE **
X | X | O |
O | O | |
X | | |
** YOUR MOVE **
Enter the row:
2
Enter the col:
2
X | X | O |
O | O | |
X | | X |
** COMPUTER MOVE **
X | X | O |
O | O | |
X | O | X |
Developed by consumerfed I T section kozhikode ( 26608629 )
Previous >> Tic Tac Toe prototype developed
Next >> Tic Tac Toe the matrix code
Complete source code will be posted soon (38064021)
No comments:
Post a Comment
Your feedback may help others !!!