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.
- Host: GitHub
- URL: https://github.com/fernandesreon/number-guessing-game
- Owner: FernandesReon
- Created: 2024-05-23T05:58:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T05:05:56.000Z (almost 2 years ago)
- Last Synced: 2024-12-21T16:48:42.951Z (over 1 year ago)
- Topics: console-game, java
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.