This is a simple guessing game implemented in Java using object-oriented programming concepts. The game involves multiple players guessing numbers against the computer's random number. The game continues until one of the players guesses the correct number.
- Clone the repository to your local machine.
- Compile the Java files using a Java compiler.
- Run the compiled Java program.
- Follow the on-screen instructions to enter the names of the players and make guesses.
- The game will continue until one of the players guesses the correct number.
Player.java: Contains the Player class which represents a player in the game.Main.java: Contains the main class where the game logic is implemented.Game.java: Contains the Game class which represents a logic for the game.