Skip to main content

First step towards Tic Tac Toe


In this blog, lets talk about the Tic-Tac-Toe and its implementation language.
As you know,  Tic-Tac-Toe (Noughts and Crosses / Xs and Os)is a paper pencil game for two players, X and O who plays in turns marking the places in 3X3 grid. The player who succeeds first in placing three of his marks in horizontal, vertical or diagonal row wins the game.
For this project, we are going to make Tic-Tac-Toe game using a programming language. This game can be implemented in various languages such as C, C++, Python or Java. As for this project, we are preferring Java.
Why JAVA?
As you know, JAVA has many advantages over C and C++.
·         The first advantage is that JAVA is an Object oriented language. So, Making categories and classes which are required for the game is easier in this language.
·         The game is more user friendly when it is implemented using Graphical Interface.  JAVA is much more friendly while handling GUI (Graphical User Interface).
·         For designing Graphical interface, we will be using NetBeans IDE. It supports JAVA language. Therefore, it is more convenient to use JAVA for implementation of the game.

In the next blog, we will see more about the logic behind the code. Till then, Happy Coding! 

Comments

Post a Comment