An open API service indexing awesome lists of open source software.

https://github.com/fernandesreon/number-guessing-game

The Number Guessing Game is a simple and engaging Java program designed to challenge players to guess a randomly generated number between 1 and 100 or else their desired range.
https://github.com/fernandesreon/number-guessing-game

console-game java

Last synced: about 1 year ago
JSON representation

The Number Guessing Game is a simple and engaging Java program designed to challenge players to guess a randomly generated number between 1 and 100 or else their desired range.

Awesome Lists containing this project

README

          

# Number Guessing Game
The Number Guessing Game is a simple and engaging Java program designed to challenge players to guess a randomly generated number between 1 and 100.


There are three difficulty levels based on the level selected the player, will have attempts to guess the correct number. The game provides feedback on each guess, indicating whether the guess was too high or too low, helping players narrow down their options.


If the correct number is guessed within the limit, the player is congratulated. If not, the game reveals the correct number and offers the option to play again.


This game utilizes Java's Random and Scanner classes to generate random numbers and handle user input, making it a fun way to practice basic programming concepts.